mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user