File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 29
29
# -- Will need shadow invocations to generate swiftmodules for Swift parts
30
30
# Install *.abi.json, swiftdoc, and swiftsourceinfo
31
31
32
- cmake_minimum_required (VERSION 3.26...3. 29 )
32
+ cmake_minimum_required (VERSION 3.29 )
33
33
34
34
set (CMAKE_C_VISIBILITY_PRESET "hidden" )
35
35
set (CMAKE_CXX_VISIBILITY_PRESET "hidden" )
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ target_link_libraries(swift_Concurrency PRIVATE
117
117
# Link to the runtime that we are just building.
118
118
swiftCore )
119
119
set_target_properties (swift_Concurrency PROPERTIES
120
- Swift_MODULE_NAME _Concurrency )
120
+ Swift_MODULE_NAME _Concurrency
121
+ LINKER_LANGUAGE CXX )
121
122
122
123
install (TARGETS swift_Concurrency
123
124
EXPORT SwiftCoreTargets
Original file line number Diff line number Diff line change @@ -269,7 +269,9 @@ if(SwiftCore_ENABLE_VECTOR_TYPES)
269
269
"${CMAKE_CURRENT_BINARY_DIR} /SIMDVectorTypes.swift" )
270
270
endif ()
271
271
272
- set_target_properties (swiftCore PROPERTIES Swift_MODULE_NAME Swift )
272
+ set_target_properties (swiftCore PROPERTIES
273
+ Swift_MODULE_NAME Swift
274
+ LINKER_LANGUAGE CXX )
273
275
274
276
target_compile_definitions (swiftCore
275
277
PRIVATE
You can’t perform that action at this time.
0 commit comments