Skip to content

Commit 6644c5d

Browse files
committed
[CMake] Fix CMake generator expression in RPATH of TestingMacros
A CMake generator expression was missing '$'
1 parent a90e8c5 commit 6644c5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/TestingMacros/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ else()
6969
set(plugin_destination_dir "lib/swift/host/plugins")
7070
# RPATH 'lib/swift/{system}' and 'lib/swift/host'
7171
set_property(TARGET TestingMacros PROPERTY
72-
INSTALL_RPATH "$ORIGIN/../../<LOWER_CASE:${CMAKE_SYSTEM_NAME}>;$ORIGIN/..")
72+
INSTALL_RPATH "$ORIGIN/../../$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>;$ORIGIN/..")
7373
endif()
7474

7575
install(TARGETS TestingMacros

0 commit comments

Comments
 (0)