-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathCMakeLists.txt
33 lines (28 loc) · 1.17 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
add_library(FastStyleTransfer
Layers/Helpers.swift
Layers/Normalization.swift
Models/TransformerNet.swift
Utility/ImportableLayer.swift)
set_target_properties(FastStyleTransfer PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
target_compile_options(FastStyleTransfer PRIVATE
$<$<BOOL:${BUILD_TESTING}>:-enable-testing>)
target_link_libraries(FastStyleTransfer PUBLIC
Checkpoints)
add_executable(FastStyleTransferDemo
Demo/ColabDemo.ipynb
Demo/Helpers.swift
Demo/main.swift)
target_link_libraries(FastStyleTransferDemo PRIVATE
FastStyleTransfer)
install(TARGETS FastStyleTransfer
ARCHIVE DESTINATION lib/swift/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>
LIBRARY DESTINATION lib/swift/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>
RUNTIME DESTINATION bin)
install(TARGETS FastStyleTransferDemo
DESTINATION bin)
get_swift_host_arch(swift_arch)
install(FILES
$<TARGET_PROPERTY:FastStyleTransfer,Swift_MODULE_DIRECTORY>/FastStyleTransfer.swiftdoc
$<TARGET_PROPERTY:FastStyleTransfer,Swift_MODULE_DIRECTORY>/FastStyleTransfer.swiftmodule
DESTINATION lib/swift$<$<NOT:$<BOOL:${BUILD_SHARED_LIBS}>>:_static>/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>/${swift_arch})