Skip to content

Commit 8072ea4

Browse files
committed
[CMake] Explicitly link Testing to Foundation
1 parent 22d6c76 commit 8072ea4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ endif()
1515
project(SwiftTesting
1616
LANGUAGES CXX Swift)
1717

18+
find_package(dispatch)
19+
find_package(Foundation)
20+
1821
include(GNUInstallDirs)
1922

2023
list(APPEND CMAKE_MODULE_PATH

Sources/Testing/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ add_library(Testing
9696
Traits/Trait.swift)
9797
target_link_libraries(Testing PRIVATE
9898
_TestingInternals)
99+
target_link_libraries(Testing PUBLIC
100+
dispatch
101+
Foundation)
99102
if(NOT BUILD_SHARED_LIBS)
100103
# When building a static library, tell clients to autolink the internal
101104
# library.

0 commit comments

Comments
 (0)