mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
- CYGWIN symbol is used to distinguish Cygwin environment from other OS and other environment in Windows. - Added windows and windowsCygnus to OSVersion in StdlibUnittest
46 lines
1.5 KiB
CMake
46 lines
1.5 KiB
CMake
|
|
set(swift_stdlib_unittest_compile_flags
|
|
"-Xfrontend" "-disable-objc-attr-requires-foundation-module")
|
|
if (SWIFT_RUNTIME_ENABLE_LEAK_CHECKER)
|
|
list(APPEND swift_stdlib_unittest_compile_flags "-DSWIFT_RUNTIME_ENABLE_LEAK_CHECKER")
|
|
endif()
|
|
if(SWIFT_SERIALIZE_STDLIB_UNITTEST)
|
|
list(APPEND swift_stdlib_unittest_compile_flags "-Xfrontend" "-sil-serialize-all")
|
|
endif()
|
|
|
|
# TODO: support this on non-POSIX platforms. It cannot be currently as it
|
|
# depends on pthreads.
|
|
add_swift_library(swiftStdlibUnittest ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
|
|
# This file should be listed the first. Module name is inferred from the
|
|
# filename.
|
|
StdlibUnittest.swift.gyb
|
|
|
|
CheckStrideable.swift.gyb
|
|
InspectValue.cpp
|
|
InspectValue.swift
|
|
InterceptTraps.cpp
|
|
LifetimeTracked.swift
|
|
MinimalTypes.swift.gyb
|
|
OpaqueIdentityFunctions.cpp
|
|
OpaqueIdentityFunctions.swift
|
|
RaceTest.swift
|
|
Statistics.swift
|
|
StdlibCoreExtras.swift
|
|
StringConvertible.swift.gyb
|
|
TestHelpers.swift
|
|
TypeIndexed.swift
|
|
GetOSVersion.mm
|
|
|
|
SWIFT_MODULE_DEPENDS SwiftPrivate SwiftPrivatePthreadExtras SwiftPrivateLibcExtras
|
|
SWIFT_MODULE_DEPENDS_IOS Darwin Foundation
|
|
SWIFT_MODULE_DEPENDS_OSX Darwin Foundation
|
|
SWIFT_MODULE_DEPENDS_TVOS Darwin Foundation
|
|
SWIFT_MODULE_DEPENDS_WATCHOS Darwin Foundation
|
|
SWIFT_MODULE_DEPENDS_LINUX Glibc
|
|
SWIFT_MODULE_DEPENDS_FREEBSD Glibc
|
|
SWIFT_MODULE_DEPENDS_CYGWIN Glibc
|
|
SWIFT_COMPILE_FLAGS ${swift_stdlib_unittest_compile_flags}
|
|
TARGET_SDKS ALL_POSIX_PLATFORMS
|
|
INSTALL_IN_COMPONENT stdlib-experimental)
|
|
|