File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
Supplemental/StringProcessing Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ add_library(swift_Concurrency
102
102
103
103
include (${SwiftCore_CONCURRENCY_GLOBAL_EXECUTOR} .cmake )
104
104
target_compile_definitions (swift_Concurrency PRIVATE
105
+ $< $< COMPILE_LANGUAGE:C,CXX> :-DSWIFT_RUNTIME>
105
106
$< $< COMPILE_LANGUAGE:C,CXX> :-DSWIFT_TARGET_LIBRARY_NAME=swift_Concurrency>
106
107
# NOTE: VS2017 <15.8 would round clamp alignment to alignof(max_align_t) which
107
108
# was non-conformant. Indicate that we wish to use extended alignment.
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ include(AvailabilityMacros)
27
27
add_compile_options (
28
28
$< $< COMPILE_LANGUAGE:Swift> :-explicit-module-build>
29
29
$< $< COMPILE_LANGUAGE:Swift> :-nostdlibimport>
30
+ "$<$<COMPILE_LANGUAGE:Swift>:SHELL:-Xfrontend -disable-implicit-concurrency-module-import>"
30
31
"$<$<COMPILE_LANGUAGE:Swift>:SHELL:-Xfrontend -disable-implicit-string-processing-module-import>" )
31
32
32
33
add_subdirectory (_RegexParser )
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ add_library(swift_RegexParser
31
31
Utility/Errors.swift
32
32
Utility/MissingUnicode.swift )
33
33
34
- target_link_libraries (swift_RegexParser PRIVATE swiftCore )
34
+ target_link_libraries (swift_RegexParser PRIVATE
35
+ swiftCore )
35
36
36
37
set_target_properties (swift_RegexParser PROPERTIES
37
38
Swift_MODULE_NAME _RegexParser )
You can’t perform that action at this time.
0 commit comments