mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Various TypeDecoder clients will depend on having the "bare" nominal type declaration demangled node for looking up nominal type descriptors, so move the generic argument-stripping code into TypeDecoder.
18 lines
703 B
CMake
18 lines
703 B
CMake
add_swift_library(swiftReflection STATIC TARGET_LIBRARY FORCE_BUILD_FOR_HOST_SDK
|
|
MetadataSource.cpp
|
|
TypeLowering.cpp
|
|
TypeRef.cpp
|
|
TypeRefBuilder.cpp
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Context.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/OldDemangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Demangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/NodePrinter.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/ManglingUtils.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Punycode.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/Remangler.cpp"
|
|
"${SWIFT_SOURCE_DIR}/lib/Demangling/TypeDecoder.cpp"
|
|
|
|
C_COMPILE_FLAGS ${SWIFT_RUNTIME_CXX_FLAGS}
|
|
LINK_FLAGS ${SWIFT_RUNTIME_LINK_FLAGS}
|
|
INSTALL_IN_COMPONENT dev)
|