Files
swift-mirror/stdlib/public/SDK/XCTest/CMakeLists.txt
David Farler 8c2248a482 Don't embed LLVM bitcode into the XCTest overlay
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
2015-05-09 01:28:05 +00:00

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)