diff options
author | Brad King <brad.king@kitware.com> | 2020-06-16 14:50:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-16 15:17:55 (GMT) |
commit | 248d0570c9016392feb841ffce6ac77e194aefe8 (patch) | |
tree | 2a43f5ef582fa6b2af06015b070fb9402214e455 /Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux | |
parent | 3f110a08571e3a506184e6b8a8e9622317435912 (diff) | |
download | CMake-248d0570c9016392feb841ffce6ac77e194aefe8.zip CMake-248d0570c9016392feb841ffce6ac77e194aefe8.tar.gz CMake-248d0570c9016392feb841ffce6ac77e194aefe8.tar.bz2 |
Tests: Factor out RunCMake.file-GET_RUNTIME_DEPENDENCIES test
Move the `file(GET_RUNTIME_DEPENDENCIES)` cases out of `RunCMake.install`.
Diffstat (limited to 'Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux')
-rw-r--r-- | Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c | 9 | ||||
-rw-r--r-- | Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c | 8 |
2 files changed, 0 insertions, 17 deletions
diff --git a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c b/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c deleted file mode 100644 index d196afe..0000000 --- a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/topexe.c +++ /dev/null @@ -1,9 +0,0 @@ -extern void test_rpath(void); -extern void test_runpath(void); - -int main(void) -{ - test_rpath(); - test_runpath(); - return 0; -} diff --git a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c b/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c deleted file mode 100644 index 040e591..0000000 --- a/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c +++ /dev/null @@ -1,8 +0,0 @@ -extern void test_rpath(void); -extern void test_runpath(void); - -void toplib(void) -{ - test_rpath(); - test_runpath(); -} |