diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-08-01 21:17:12 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-08-01 21:17:12 +0300 |
commit | 8c414587bd21fc0ce25eb9eefb3ab20287f06b86 (patch) | |
tree | 3a97dab2446a5093fa8aa90c500f2273d5a8c239 /CMakeLists.txt | |
parent | 5546f519cccc59afdd492800162f8a92aa8bd049 (diff) |
iOS: ext-deps target is undefined
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aac03046..89bdcdb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -275,7 +275,9 @@ endif () | |||
275 | 275 | ||
276 | # Target. | 276 | # Target. |
277 | add_executable (app ${SOURCES} ${RESOURCES}) | 277 | add_executable (app ${SOURCES} ${RESOURCES}) |
278 | add_dependencies (app ext-deps) | 278 | if (TARGET ext-deps) |
279 | add_dependencies (app ext-deps) | ||
280 | endif () | ||
279 | set_target_properties (app PROPERTIES OUTPUT_NAME lagrange) | 281 | set_target_properties (app PROPERTIES OUTPUT_NAME lagrange) |
280 | target_include_directories (app PUBLIC | 282 | target_include_directories (app PUBLIC |
281 | src | 283 | src |