Skip to content

Commit 5164668

Browse files
authored
Merge pull request #3442 from compnerd/framework-cleanup
2 parents 565c741 + 4a4b54e commit 5164668

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

stdlib/private/StdlibCollectionUnittest/CMakeLists.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ if(SWIFT_SERIALIZE_STDLIB_UNITTEST)
33
list(APPEND swift_stdlib_unittest_compile_flags "-Xfrontend" "-sil-serialize-all")
44
endif()
55

6-
set(swift_stdlib_unittest_framework_depends)
7-
if(SWIFT_HOST_VARIANT MATCHES "${SWIFT_DARWIN_VARIANTS}")
8-
list(APPEND swift_stdlib_unittest_framework_depends
9-
Foundation)
10-
endif()
11-
126
# TODO: support this on non-POSIX platforms. It cannot be currently as it
137
# depends on pthreads.
148
add_swift_library(swiftStdlibCollectionUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
@@ -31,6 +25,5 @@ add_swift_library(swiftStdlibCollectionUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYP
3125
SWIFT_MODULE_DEPENDS StdlibUnittest
3226
SWIFT_COMPILE_FLAGS ${swift_stdlib_unittest_compile_flags}
3327
TARGET_SDKS ALL_POSIX_PLATFORMS
34-
FRAMEWORK_DEPENDS ${swift_stdlib_unittest_framework_depends}
3528
INSTALL_IN_COMPONENT stdlib-experimental)
3629

stdlib/private/StdlibUnittest/CMakeLists.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ if(SWIFT_SERIALIZE_STDLIB_UNITTEST)
88
list(APPEND swift_stdlib_unittest_compile_flags "-Xfrontend" "-sil-serialize-all")
99
endif()
1010

11-
# TODO: extend this through a similar mechanism to SWIFT_MODULE_DEPENDS
12-
set(swift_stdlib_unittest_framework_depends)
13-
if(SWIFT_HOST_VARIANT MATCHES "${SWIFT_DARWIN_VARIANTS}")
14-
list(APPEND swift_stdlib_unittest_framework_depends Foundation)
15-
endif()
16-
1711
# TODO: support this on non-POSIX platforms. It cannot be currently as it
1812
# depends on pthreads.
1913
add_swift_library(swiftStdlibUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
@@ -43,6 +37,5 @@ add_swift_library(swiftStdlibUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STD
4337
SWIFT_MODULE_DEPENDS_FREEBSD Glibc
4438
SWIFT_COMPILE_FLAGS ${swift_stdlib_unittest_compile_flags}
4539
TARGET_SDKS ALL_POSIX_PLATFORMS
46-
FRAMEWORK_DEPENDS ${swift_stdlib_unittest_framework_depends}
4740
INSTALL_IN_COMPONENT stdlib-experimental)
4841

0 commit comments

Comments
 (0)