@@ -18,28 +18,44 @@ function(get_swift_host_os result_var_name)
18
18
set (${result_var_name} ${SWIFT_SYSTEM_NAME} PARENT_SCOPE)
19
19
endfunction ()
20
20
21
- function (_swift_testing_install_target module)
21
+ # Returns the path to the Swift Testing library installation directory
22
+ #
23
+ # Usage:
24
+ # get_swift_testing_install_lib_dir(type result_var_name)
25
+ #
26
+ # Arguments:
27
+ # type: The type of the library (STATIC_LIBRARY, SHARED_LIBRARY, or EXECUTABLE).
28
+ # Typically, the value of the TYPE target property.
29
+ # result_var_name: The name of the variable to set
30
+ function (get_swift_testing_install_lib_dir type result_var_name)
22
31
get_swift_host_os(swift_os)
23
- get_target_property (type ${module} TYPE )
24
-
25
32
if (type STREQUAL STATIC_LIBRARY)
26
33
set (swift swift_static)
27
34
else ()
28
35
set (swift swift)
29
36
endif ()
30
37
38
+ if (APPLE )
39
+ set (${result_var_name} "lib/${swift} /${swift_os} /testing" PARENT_SCOPE)
40
+ else ()
41
+ set (${result_var_name} "lib/${swift} /${swift_os} " PARENT_SCOPE)
42
+ endif ()
43
+ endfunction ()
44
+
45
+ function (_swift_testing_install_target module)
31
46
target_compile_options (Testing PRIVATE "-no-toolchain-stdlib-rpath" )
32
47
33
- if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" )
34
- set (lib_destination_dir "lib/${swift} /${swift_os} /testing" )
48
+ if (APPLE )
35
49
set_property (TARGET ${module} PROPERTY
36
50
INSTALL_RPATH "@loader_path/.." )
37
51
else ()
38
- set (lib_destination_dir "lib/${swift} /${swift_os} " )
39
52
set_property (TARGET ${module} PROPERTY
40
53
INSTALL_RPATH "$ORIGIN" )
41
54
endif ()
42
55
56
+ get_target_property (type ${module} TYPE )
57
+ get_swift_testing_install_lib_dir(${type} lib_destination_dir)
58
+
43
59
install (TARGETS ${module}
44
60
ARCHIVE DESTINATION "${lib_destination_dir} "
45
61
LIBRARY DESTINATION "${lib_destination_dir} "
@@ -71,7 +87,7 @@ function(_swift_testing_install_target module)
71
87
install (FILES $<TARGET_PROPERTY:${module} ,Swift_MODULE_DIRECTORY>/${module_name} .swiftmodule
72
88
DESTINATION "${module_dir} "
73
89
RENAME ${SwiftTesting_MODULE_TRIPLE} .swiftmodule)
74
- if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" )
90
+ if (APPLE )
75
91
# Only Darwin has stable ABI.
76
92
install (FILES $<TARGET_PROPERTY:${module} ,Swift_MODULE_DIRECTORY>/${module_name} .swiftinterface
77
93
DESTINATION "${module_dir} "
0 commit comments