mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
With bitcode enabled, the XCTest overlay fails to link because XCTest.framework itself was not built with bitcode. For now, we should not build this overlay with bitcode. It isn't embedded in apps. rdar://problem/20884313 Swift SVN r28355
10 lines
230 B
CMake
10 lines
230 B
CMake
set(DISABLE_APPLICATION_EXTENSION ON)
|
|
|
|
add_swift_library(swiftXCTest IS_SDK_OVERLAY
|
|
XCTestCaseAdditions.mm
|
|
XCTest.swift
|
|
SWIFT_MODULE_DEPENDS ObjectiveC Foundation
|
|
FRAMEWORK_DEPENDS Foundation XCTest
|
|
DONT_EMBED_BITCODE)
|
|
|