meta/Tests/DemoApp/CMakeLists.txt
Zaphhh 18f51ffb93
Some checks failed
SwiftLint / SwiftLint (pull_request) Has been cancelled
Add CMake support
2025-04-02 20:22:43 +01:00

14 lines
246 B
CMake

add_executable(DemoApp
DemoApp.swift
)
target_compile_options(DemoApp PUBLIC
-parse-as-library
)
target_link_libraries(DemoApp PRIVATE SampleBackends)
set_target_properties(DemoApp PROPERTIES
Swift_LANGUAGE_VERSION 5
)