From 6644c5d0c1b29637e2f294c64d819770707a1b04 Mon Sep 17 00:00:00 2001 From: Rintaro Ishizaki Date: Mon, 19 Aug 2024 10:49:41 -0700 Subject: [PATCH] [CMake] Fix CMake generator expression in RPATH of TestingMacros A CMake generator expression was missing '$' --- Sources/TestingMacros/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TestingMacros/CMakeLists.txt b/Sources/TestingMacros/CMakeLists.txt index dda13612b..d8fab3c2f 100644 --- a/Sources/TestingMacros/CMakeLists.txt +++ b/Sources/TestingMacros/CMakeLists.txt @@ -69,7 +69,7 @@ else() set(plugin_destination_dir "lib/swift/host/plugins") # RPATH 'lib/swift/{system}' and 'lib/swift/host' set_property(TARGET TestingMacros PROPERTY - INSTALL_RPATH "$ORIGIN/../../;$ORIGIN/..") + INSTALL_RPATH "$ORIGIN/../../$;$ORIGIN/..") endif() install(TARGETS TestingMacros