We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79a443a commit fa43fb6Copy full SHA for fa43fb6
CMakeLists.txt
@@ -16,7 +16,9 @@ project(SwiftTesting
16
LANGUAGES CXX Swift)
17
18
if(NOT APPLE)
19
- find_package(dispatch CONFIG)
+ if(NOT WASI)
20
+ find_package(dispatch CONFIG)
21
+ endif()
22
find_package(Foundation CONFIG)
23
endif()
24
Sources/Testing/CMakeLists.txt
@@ -97,8 +97,11 @@ add_library(Testing
97
target_link_libraries(Testing PRIVATE
98
_TestingInternals)
99
100
101
+ target_link_libraries(Testing PUBLIC
102
+ dispatch)
103
104
target_link_libraries(Testing PUBLIC
- dispatch
105
Foundation)
106
107
if(NOT BUILD_SHARED_LIBS)
0 commit comments