diff options
Diffstat (limited to 'Tests/Dependency')
-rw-r--r-- | Tests/Dependency/Exec/CMakeLists.txt | 5 | ||||
-rw-r--r-- | Tests/Dependency/Six/CMakeLists.txt | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Tests/Dependency/Exec/CMakeLists.txt b/Tests/Dependency/Exec/CMakeLists.txt index 1867b1d..97fffe7 100644 --- a/Tests/Dependency/Exec/CMakeLists.txt +++ b/Tests/Dependency/Exec/CMakeLists.txt @@ -1,6 +1,7 @@ -ADD_EXECUTABLE( exec ExecMain.c ) - # This executable directly depends on NoDepB, NoDepC, SixA and SixB. However, # since NoDepB and NoDepC do not have explicit dependency information, # and they depend on NoDepA, we have to manually specify that dependency. LINK_LIBRARIES( NoDepB NoDepC NoDepA SixB SixA ) + +ADD_EXECUTABLE( exec ExecMain.c ) + diff --git a/Tests/Dependency/Six/CMakeLists.txt b/Tests/Dependency/Six/CMakeLists.txt index 2cb1586..d0abdd6 100644 --- a/Tests/Dependency/Six/CMakeLists.txt +++ b/Tests/Dependency/Six/CMakeLists.txt @@ -3,10 +3,10 @@ # specify them in the correct order. LINK_LIBRARIES( Two ) +LINK_LIBRARIES( Five ) ADD_LIBRARY( SixA SixASrc.c ) ADD_LIBRARY( SixB SixBSrc.c ) TARGET_LINK_LIBRARIES( SixB Four ) -LINK_LIBRARIES( Five ) |