File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ include(CheckLibraryExists)
22
22
include (CheckSymbolExists)
23
23
include (GNUInstallDirs)
24
24
25
- set (CMAKE_INSTALL_LIBDIR lib CACHE PATH "Path where the libraries should be installed" )
25
+ set (INSTALL_LIBDIR " lib" CACHE PATH "Path where the libraries should be installed" )
26
26
set (WITH_BLOCKS_RUNTIME "" CACHE PATH "Path to blocks runtime" )
27
27
28
28
include (DispatchAppleOptions)
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ install(FILES
14
14
source .h
15
15
time.h
16
16
DESTINATION
17
- "${CMAKE_INSTALL_LIBDIR } /swift/dispatch" )
17
+ "${INSTALL_LIBDIR } /swift/dispatch" )
18
18
if (ENABLE_SWIFT)
19
19
get_filename_component (MODULE_MAP module.modulemap REALPATH)
20
20
install (FILES
21
21
${MODULE_MAP}
22
22
DESTINATION
23
- "${CMAKE_INSTALL_LIBDIR } /swift/dispatch" )
23
+ "${INSTALL_LIBDIR } /swift/dispatch" )
24
24
endif ()
25
25
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ install(FILES
6
6
object.h
7
7
linux_base.h
8
8
DESTINATION
9
- "${CMAKE_INSTALL_LIBDIR } /swift/os" )
9
+ "${INSTALL_LIBDIR } /swift/os" )
10
10
Original file line number Diff line number Diff line change @@ -202,12 +202,12 @@ add_custom_command(TARGET dispatch POST_BUILD
202
202
install (TARGETS
203
203
dispatch
204
204
DESTINATION
205
- "${CMAKE_INSTALL_LIBDIR } /swift/${SWIFT_OS} " )
205
+ "${INSTALL_LIBDIR } /swift/${SWIFT_OS} " )
206
206
if (ENABLE_SWIFT)
207
207
install (FILES
208
208
${CMAKE_CURRENT_BINARY_DIR} /swift/Dispatch.swiftmodule
209
209
${CMAKE_CURRENT_BINARY_DIR} /swift/Dispatch.swiftdoc
210
210
DESTINATION
211
- "${CMAKE_INSTALL_LIBDIR } /swift/${SWIFT_OS} /${CMAKE_SYSTEM_PROCESSOR} " )
211
+ "${INSTALL_LIBDIR } /swift/${SWIFT_OS} /${CMAKE_SYSTEM_PROCESSOR} " )
212
212
endif ()
213
213
You can’t perform that action at this time.
0 commit comments