diff options
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 c9037986..7b43b6de 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 |