Files
swift-mirror/unittests/SwiftDemangle/CMakeLists.txt
Dmitri Hrybenko 321d4d4792 Rename libfunctionNameDemangle.dylib to libswiftDemangle.dylib
This library becomes a permanent interface that we would need to support
in the long term, so we should get dylib names and APIs right.

rdar://20418214

Swift SVN r26957
2015-04-03 22:12:28 +00:00

10 lines
196 B
CMake

if(TARGET functionNameDemangle)
add_swift_unittest(FunctionNameDemangleTests
DemangleTest.cpp
)
target_link_libraries(FunctionNameDemangleTests
functionNameDemangle
)
endif()