Files
swift-mirror/tools/swift-def-to-strings-converter/CMakeLists.txt
Rintaro Ishizaki dc6877334f [CMake] Stop some exectuable link with swiftCore
swift-compatibility-symbols, swift-def-to-strings-converter,
and swift-serialize-diagnostics don't use any Swift modules. But when
SWIFT_SWIFT_PARSER was enabled, they are linked with swiftCore. But
these binaries can be executed before the runtime is being built.
We need to stop them linking with swiftCore.
2023-08-28 19:10:01 +00:00

9 lines
218 B
CMake

add_swift_host_tool(swift-def-to-strings-converter
swift-def-to-strings-converter.cpp
SWIFT_COMPONENT tools
DOES_NOT_USE_SWIFT
)
target_link_libraries(swift-def-to-strings-converter PRIVATE
swiftLocalization)