We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d6c76 commit 8072ea4Copy full SHA for 8072ea4
CMakeLists.txt
@@ -15,6 +15,9 @@ endif()
15
project(SwiftTesting
16
LANGUAGES CXX Swift)
17
18
+find_package(dispatch)
19
+find_package(Foundation)
20
+
21
include(GNUInstallDirs)
22
23
list(APPEND CMAKE_MODULE_PATH
Sources/Testing/CMakeLists.txt
@@ -96,6 +96,9 @@ add_library(Testing
96
Traits/Trait.swift)
97
target_link_libraries(Testing PRIVATE
98
_TestingInternals)
99
+target_link_libraries(Testing PUBLIC
100
+ dispatch
101
+ Foundation)
102
if(NOT BUILD_SHARED_LIBS)
103
# When building a static library, tell clients to autolink the internal
104
# library.
0 commit comments