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 2929# -- Will need shadow invocations to generate swiftmodules for Swift parts
3030# Install *.abi.json, swiftdoc, and swiftsourceinfo
3131
32- cmake_minimum_required (VERSION 3.26...3. 29)
32+ cmake_minimum_required (VERSION 3.29)
3333
3434set (CMAKE_C_VISIBILITY_PRESET "hidden" )
3535set (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
117117 # Link to the runtime that we are just building.
118118 swiftCore)
119119set_target_properties (swift_Concurrency PROPERTIES
120- Swift_MODULE_NAME _Concurrency)
120+ Swift_MODULE_NAME _Concurrency
121+ LINKER_LANGUAGE CXX)
121122
122123install (TARGETS swift_Concurrency
123124 EXPORT SwiftCoreTargets
Original file line number Diff line number Diff line change @@ -269,7 +269,9 @@ if(SwiftCore_ENABLE_VECTOR_TYPES)
269269 "${CMAKE_CURRENT_BINARY_DIR} /SIMDVectorTypes.swift" )
270270endif ()
271271
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)
273275
274276target_compile_definitions (swiftCore
275277 PRIVATE
You can’t perform that action at this time.
0 commit comments