File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,4 @@ include_directories(include)
25
25
add_subdirectory (LLVMSupport )
26
26
add_subdirectory (SwiftShims/swift/shims )
27
27
add_subdirectory (Demangling )
28
+ add_subdirectory (Threading )
Original file line number Diff line number Diff line change
1
+ # TODO: I think we can build the one that actually matters based on the
2
+ # platform we're building, rather than relying just on macro definitions
3
+ # and linking empty objects.
4
+ # https://github.com/swiftlang/swift/issues/77435
5
+ add_library (swiftThreading OBJECT
6
+ "${PROJECT_SOURCE_DIR} /../../lib/Threading/C11.cpp"
7
+ "${PROJECT_SOURCE_DIR} /../../lib/Threading/Linux.cpp"
8
+ "${PROJECT_SOURCE_DIR} /../../lib/Threading/Pthreads.cpp"
9
+ "${PROJECT_SOURCE_DIR} /../../lib/Threading/Win32.cpp" )
10
+ target_link_libraries (swiftThreading PRIVATE swiftShims )
You can’t perform that action at this time.
0 commit comments