mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
315 B
CMake
14 lines
315 B
CMake
if(TARGET swiftDemangle)
|
|
add_swift_unittest(SwiftDemangleTests
|
|
DemangleTest.cpp
|
|
)
|
|
set_target_properties(SwiftDemangleTests
|
|
PROPERTIES BUILD_WITH_INSTALL_RPATH On INSTALL_RPATH "${SWIFT_LIBRARY_OUTPUT_INTDIR}"
|
|
)
|
|
|
|
target_link_libraries(SwiftDemangleTests
|
|
PRIVATE
|
|
swiftDemangle
|
|
)
|
|
endif()
|