mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
268 B
CMake
11 lines
268 B
CMake
add_swift_executable(swift-stdlib-tool
|
|
swift-stdlib-tool.mm)
|
|
|
|
find_library(FOUNDATION NAMES Foundation)
|
|
target_link_libraries(swift-stdlib-tool PRIVATE ${FOUNDATION})
|
|
|
|
swift_install_in_component(compiler
|
|
TARGETS swift-stdlib-tool
|
|
RUNTIME DESTINATION "bin")
|
|
|