You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
296 B
13 lines
296 B
9 months ago
|
if(POLICY CMP0157)
|
||
|
cmake_policy(SET CMP0157 NEW)
|
||
|
endif()
|
||
|
|
||
|
enable_language(Swift)
|
||
|
|
||
|
add_library(StaticLibrary STATIC L.swift)
|
||
|
add_library(DynamicLibrary SHARED L.swift)
|
||
|
add_executable(Executable E.swift)
|
||
|
|
||
|
add_dependencies(DynamicLibrary StaticLibrary)
|
||
|
add_dependencies(Executable DynamicLibrary)
|