Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
RunCMake
/
RuntimePath
/
GenexCheck.cmake
blob: 07dc4967d588a59475cb07ad078e11a144f92675 [
file
] [
log
] [
blame
]
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
()