Merge topic 'fix_ios_try_compile'

275b6b3194 iOS: Fix try_compile FILE_COPY not to fail

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3272
This commit is contained in:
Brad King
2019-05-06 13:32:16 +00:00
committed by Kitware Robot

View File

@@ -1052,7 +1052,14 @@ void cmCoreTryCompile::FindOutputFile(const std::string& targetName,
}
searchDirs.emplace_back("/Debug");
#if defined(__APPLE__)
std::string app = "/Debug/" + targetName + ".app";
std::string app = "/" + targetName + ".app";
if (config && config[0]) {
std::string tmp = "/";
tmp += config + app;
searchDirs.push_back(std::move(tmp));
}
std::string tmp = "/Debug" + app;
searchDirs.emplace_back(std::move(tmp));
searchDirs.push_back(std::move(app));
#endif
searchDirs.emplace_back("/Development");