mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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
25 lines
759 B
CMake
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}")
|