File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ SPDX-License-Identifier: BSD-3
8
8
add_subdirectory (Runtime )
9
9
add_subdirectory (Core )
10
10
add_subdirectory (Onone )
11
+ add_subdirectory (_Concurrency )
Original file line number Diff line number Diff line change
1
+ #[[
2
+ Copyright © 2018 Saleem Abdulrasool <[email protected] >.
3
+ All Rights Reserved.
4
+
5
+ SPDX-License-Identifier: BSD-3
6
+ #]]
7
+
8
+ add_library (swift_Concurrency
9
+ _Concurrency.swift )
10
+ set_target_properties (swift_Concurrency PROPERTIES
11
+ Swift_MODULE_NAME _Concurrency )
12
+ target_compile_options (swift_Concurrency PRIVATE
13
+ -parse-stdlib
14
+ -disallow-use-new-driver
15
+ "SHELL:-Xfrontend -enable-resilience" )
16
+ target_link_libraries (swift_Concurrency PUBLIC
17
+ swiftCore )
18
+ target_link_options (swift_Concurrency PRIVATE
19
+ "SHELL:-Xclang-linker -nostdlib" )
You can’t perform that action at this time.
0 commit comments