diff options
Diffstat (limited to 'Tests/Jump')
-rw-r--r-- | Tests/Jump/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/Jump/Library/CMakeLists.txt | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Jump/CMakeLists.txt b/Tests/Jump/CMakeLists.txt index 3a506aa..18776a1 100644 --- a/Tests/Jump/CMakeLists.txt +++ b/Tests/Jump/CMakeLists.txt @@ -1,4 +1,5 @@ PROJECT(Jump) SET(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1) -SUBDIRS(Executable Library) +ADD_SUBDIRECTORY(Executable) +ADD_SUBDIRECTORY(Library) diff --git a/Tests/Jump/Library/CMakeLists.txt b/Tests/Jump/Library/CMakeLists.txt index 9d45ea4..2f78c50 100644 --- a/Tests/Jump/Library/CMakeLists.txt +++ b/Tests/Jump/Library/CMakeLists.txt @@ -1 +1,2 @@ -SUBDIRS(Static Shared) +ADD_SUBDIRECTORY(Static) +ADD_SUBDIRECTORY(Shared) |