mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
259 B
CMake
11 lines
259 B
CMake
set(SHARED_LIBRARY ON)
|
|
add_swift_library(swiftUIKit INSTALL
|
|
UIKit.swift
|
|
DEPENDS swift_stdlib_core swiftObjectiveC swiftFoundation)
|
|
|
|
add_swift_optimization_flags(swiftUIKit)
|
|
|
|
# Link against frameworks
|
|
target_link_libraries(swiftUIKit
|
|
"-framework UIKit")
|