mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 05:16:10 +01:00
Properly handle prepending user-specified paths to DYLD_FRAMEWORK_PATH
This commit is contained in:
parent
1538be67cb
commit
a579b5f640
@ -65,7 +65,9 @@ function(catch_discover_tests_impl)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(APPLE AND dl_framework_paths)
|
if(APPLE AND dl_framework_paths)
|
||||||
cmake_path(CONVERT "${dl_framework_paths}" TO_NATIVE_PATH_LIST paths)
|
cmake_path(CONVERT "$ENV{DYLD_FRAMEWORK_PATH}" TO_NATIVE_PATH_LIST env_dl_framework_paths)
|
||||||
|
list(PREPEND env_dl_framework_paths "${dl_framework_paths}")
|
||||||
|
cmake_path(CONVERT "${env_dl_framework_paths}" TO_NATIVE_PATH_LIST paths)
|
||||||
set(ENV{DYLD_FRAMEWORK_PATH} "${paths}")
|
set(ENV{DYLD_FRAMEWORK_PATH} "${paths}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@ -133,7 +135,7 @@ function(catch_discover_tests_impl)
|
|||||||
if(APPLE AND dl_framework_paths)
|
if(APPLE AND dl_framework_paths)
|
||||||
foreach(path ${dl_framework_paths})
|
foreach(path ${dl_framework_paths})
|
||||||
cmake_path(NATIVE_PATH path native_path)
|
cmake_path(NATIVE_PATH path native_path)
|
||||||
list(APPEND environment_modifications "DYLD_FRAMEWORK_PATH=path_list_prepend:${native_path}")
|
list(PREPEND environment_modifications "DYLD_FRAMEWORK_PATH=path_list_prepend:${native_path}")
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user