Files
swift-mirror/stdlib/public/SwiftOnoneSupport/CMakeLists.txt
Roman Levenstein 658a9cc93f Do not use the inlining of generics for creation of pre-specializations
We want to produce as many of the required specializations as possible, instead of generically inlining their implementations.
2017-02-16 13:05:04 -08:00

8 lines
426 B
CMake

add_swift_library(swiftSwiftOnoneSupport ${SWIFT_STDLIB_LIBRARY_BUILD_TYPES} IS_STDLIB
# This file should be listed the first. Module name is inferred from the
# filename.
SwiftOnoneSupport.swift
SWIFT_COMPILE_FLAGS ${STDLIB_SIL_SERIALIZE_ALL} "-parse-stdlib" "-Xllvm" "-sil-inline-generics=false" "${SWIFT_RUNTIME_SWIFT_COMPILE_FLAGS}"
LINK_FLAGS "${SWIFT_RUNTIME_SWIFT_LINK_FLAGS}"
INSTALL_IN_COMPONENT stdlib)