-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathCMakeLists.txt
38 lines (35 loc) · 1.22 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
34
35
36
37
38
add_subdirectory(STBImage)
add_library(ModelSupport
AnimatedImage.swift
BijectiveDictionary.swift
FileManagement.swift
FileSystem.swift
FoundationFileSystem.swift
GIF.swift
LabeledData.swift
Image.swift
Stderr.swift
AnyLayer.swift
AnyLayerTangentVector.swift
Text/BytePairEncoder.swift
Text/TextBatch.swift
Text/Tokenization.swift
Text/WordSeg/Alphabet.swift
Text/WordSeg/CharacterSequence.swift
Text/WordSeg/Lexicon.swift)
set_target_properties(ModelSupport PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
target_compile_options(ModelSupport PRIVATE
$<$<BOOL:${BUILD_TESTING}>:-enable-testing>)
target_link_libraries(ModelSupport PUBLIC
STBImage
SwiftProtobuf)
install(TARGETS ModelSupport
ARCHIVE DESTINATION lib/swift/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>
LIBRARY DESTINATION lib/swift/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>
RUNTIME DESTINATION bin)
get_swift_host_arch(swift_arch)
install(FILES
$<TARGET_PROPERTY:ModelSupport,Swift_MODULE_DIRECTORY>/ModelSupport.swiftdoc
$<TARGET_PROPERTY:ModelSupport,Swift_MODULE_DIRECTORY>/ModelSupport.swiftmodule
DESTINATION lib/swift$<$<NOT:$<BOOL:${BUILD_SHARED_LIBS}>>:_static>/$<LOWER_CASE:${CMAKE_SYSTEM_NAME}>/${swift_arch})