Files
swift-mirror/stdlib/private/OSLog/CMakeLists.txt
Josh Learn 1fd6ef95ce [OSLog] Update compiler stubs and tests
The compiler stubs for testing the OSLog implementation are in need of an update. This change updates the stubs to be consistent with the current OSLog implementation, updates the existing tests, and adds new tests for String and metatype interpolations.

rdar://69719729
2020-10-01 12:14:08 -07:00

25 lines
759 B
CMake

add_swift_target_library(swiftOSLogTestHelper
IS_SDK_OVERLAY
SHARED
OSLogTestHelper.swift
OSLogMessage.swift
OSLogIntegerFormatting.swift
OSLogStringAlignment.swift
OSLogIntegerTypes.swift
OSLogStringTypes.swift
OSLogNSObjectType.swift
OSLogFloatingPointTypes.swift
OSLogSwiftProtocols.swift
OSLogPrivacy.swift
OSLogFloatFormatting.swift
SWIFT_MODULE_DEPENDS_IOS Darwin ObjectiveC
SWIFT_MODULE_DEPENDS_OSX Darwin ObjectiveC
SWIFT_MODULE_DEPENDS_TVOS Darwin ObjectiveC
SWIFT_MODULE_DEPENDS_WATCHOS Darwin ObjectiveC
TARGET_SDKS ALL_APPLE_PLATFORMS
SWIFT_COMPILE_FLAGS ${SWIFT_STANDARD_LIBRARY_SWIFT_FLAGS}
INSTALL_IN_COMPONENT never_install
DARWIN_INSTALL_NAME_DIR "${SWIFT_DARWIN_STDLIB_PRIVATE_INSTALL_NAME_DIR}")