diff options
author | Clinton Stimpson <clinton@elemtech.com> | 2013-07-16 04:23:12 (GMT) |
---|---|---|
committer | Clinton Stimpson <clinton@elemtech.com> | 2013-07-16 04:39:08 (GMT) |
commit | e645ff0b10567e400c722dfc28c58dc4fd8d181b (patch) | |
tree | a2ba239079f137345d940c527057d4e94d1ed463 /Tests/MacRuntimePath/B | |
parent | b94e726a83b92f5b7376b97aa448107884a76685 (diff) | |
download | CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.zip CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.tar.gz CMake-e645ff0b10567e400c722dfc28c58dc4fd8d181b.tar.bz2 |
OS X: Enable rpath support on Mac OS X when find_library() is used.
Diffstat (limited to 'Tests/MacRuntimePath/B')
-rw-r--r-- | Tests/MacRuntimePath/B/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/MacRuntimePath/B/CMakeLists.txt b/Tests/MacRuntimePath/B/CMakeLists.txt index c361620..4317af6 100644 --- a/Tests/MacRuntimePath/B/CMakeLists.txt +++ b/Tests/MacRuntimePath/B/CMakeLists.txt @@ -9,7 +9,8 @@ add_executable(testb ${MacRuntimePath_B_SOURCE_DIR}/../A/test3.cpp) target_link_libraries(testb shared framework) # test link with rpath enabled library by filename -target_link_libraries(testb $<TARGET_LINKER_FILE:shared2> framework) +find_library(fw2 NAMES framework2 HINTS ${MacRuntimePath_B_BINARY_DIR}/../Root/lib-fw2) +target_link_libraries(testb $<TARGET_LINKER_FILE:shared2> ${fw2}) add_custom_target(testb_run ALL COMMAND testb |