diff options
Diffstat (limited to 'Tests/Dependency/Exec/CMakeLists.txt')
-rw-r--r-- | Tests/Dependency/Exec/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/Dependency/Exec/CMakeLists.txt b/Tests/Dependency/Exec/CMakeLists.txt new file mode 100644 index 0000000..7214b05 --- /dev/null +++ b/Tests/Dependency/Exec/CMakeLists.txt @@ -0,0 +1,6 @@ +ADD_EXECUTABLE( exec ExecMain.c ) + +# This executable directly depends on NoDepB, NoDepC and Five. 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 Five ) |