summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/RuntimePath/GenexCheck.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/RuntimePath/GenexCheck.cmake')
-rw-r--r--Tests/RunCMake/RuntimePath/GenexCheck.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/RuntimePath/GenexCheck.cmake b/Tests/RunCMake/RuntimePath/GenexCheck.cmake
new file mode 100644
index 0000000..07dc496
--- /dev/null
+++ b/Tests/RunCMake/RuntimePath/GenexCheck.cmake
@@ -0,0 +1,7 @@
+file(GLOB_RECURSE files "${dir}/*")
+
+foreach(file IN LISTS files)
+ if(file MATCHES "/(build|install)(no)?ge$")
+ file(RPATH_CHANGE FILE "${file}" OLD_RPATH "/opt/foo/lib" NEW_RPATH "/opt/bar/lib")
+ endif()
+endforeach()