-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
Copy pathCMakeLists.txt
198 lines (158 loc) · 7.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
project(System.IO.Compression.Native C)
include(${CMAKE_CURRENT_LIST_DIR}/extra_libs.cmake)
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
include(${CLR_SRC_NATIVE_DIR}/external/zlib-ng.cmake)
endif()
if (CLR_CMAKE_USE_SYSTEM_BROTLI)
if (CLR_CMAKE_HOST_FREEBSD)
set(CMAKE_REQUIRED_INCLUDES ${CROSS_ROOTFS}/usr/local/include)
endif()
else()
include(${CLR_SRC_NATIVE_DIR}/external/brotli.cmake)
endif()
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/../Common/pal_config.h.in
${CMAKE_CURRENT_BINARY_DIR}/pal_config.h)
set(NATIVECOMPRESSION_SOURCES
pal_zlib.c
)
if (NOT CLR_CMAKE_TARGET_BROWSER AND NOT CLR_CMAKE_TARGET_WASI)
set (NATIVECOMPRESSION_SOURCES
${NATIVECOMPRESSION_SOURCES}
entrypoints.c
)
endif ()
if (CLR_CMAKE_TARGET_UNIX OR CLR_CMAKE_TARGET_BROWSER OR CLR_CMAKE_TARGET_WASI)
set(NATIVE_LIBS_EXTRA)
append_extra_compression_libs(NATIVE_LIBS_EXTRA)
# Disable implicit fallthrough warning for Zlib and Brotli
set(FLAGS -Wno-implicit-fallthrough)
set_source_files_properties(${NATIVECOMPRESSION_SOURCES} PROPERTIES COMPILE_FLAGS ${FLAGS})
if (GEN_SHARED_LIB)
add_definitions(-DBROTLI_SHARED_COMPILATION)
add_library(System.IO.Compression.Native
SHARED
${NATIVECOMPRESSION_SOURCES}
${VERSION_FILE_PATH}
)
target_link_libraries(System.IO.Compression.Native
PRIVATE
${NATIVE_LIBS_EXTRA}
)
target_include_directories(System.IO.Compression.Native PRIVATE ${BROTLI_INCLUDE_DIRS})
target_link_libraries(System.IO.Compression.Native PRIVATE ${BROTLI_LIBRARIES})
if (NOT CLR_CMAKE_TARGET_MACCATALYST AND NOT CLR_CMAKE_TARGET_IOS AND NOT CLR_CMAKE_TARGET_TVOS AND NOT CLR_CMAKE_TARGET_ANDROID AND NOT CLR_CMAKE_USE_SYSTEM_BROTLI)
set(DEF_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/System.IO.Compression.Native_unixexports.src)
set(EXPORTS_FILE ${CMAKE_CURRENT_BINARY_DIR}/System.IO.Compression.Native.exports)
generate_exports_file(${DEF_SOURCES} ${EXPORTS_FILE})
set_exports_linker_option(${EXPORTS_FILE})
add_custom_target(System.IO.Compression.Native_exports DEPENDS ${EXPORTS_FILE})
add_dependencies(System.IO.Compression.Native System.IO.Compression.Native_exports)
set_property(TARGET System.IO.Compression.Native APPEND_STRING PROPERTY LINK_FLAGS ${EXPORTS_LINKER_OPTION})
set_property(TARGET System.IO.Compression.Native APPEND_STRING PROPERTY LINK_DEPENDS ${EXPORTS_FILE})
add_custom_command(TARGET System.IO.Compression.Native POST_BUILD
COMMENT "Verifying System.IO.Compression.Native entry points against entrypoints.c "
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/../verify-entrypoints.sh
$<TARGET_FILE:System.IO.Compression.Native>
${CMAKE_CURRENT_SOURCE_DIR}/entrypoints.c
${CMAKE_NM}
VERBATIM
)
endif ()
install_with_stripped_symbols (System.IO.Compression.Native PROGRAMS .)
endif ()
add_library(System.IO.Compression.Native-Static
STATIC
${NATIVECOMPRESSION_SOURCES}
)
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
target_link_libraries(System.IO.Compression.Native-Static PRIVATE zlibstatic)
endif()
set_target_properties(System.IO.Compression.Native-Static PROPERTIES OUTPUT_NAME System.IO.Compression.Native CLEAN_DIRECT_OUTPUT 1)
target_link_libraries(System.IO.Compression.Native-Static
PUBLIC
${NATIVE_LIBS_EXTRA}
)
target_include_directories(System.IO.Compression.Native-Static PUBLIC ${BROTLI_INCLUDE_DIRS})
target_link_libraries(System.IO.Compression.Native-Static PUBLIC ${BROTLI_LIBRARIES})
foreach(BROTLI_LIB ${BROTLI_LIBRARIES})
# Brotli's build scripts can add some system dependencies like libm
# to BROTLI_LIBRARIES. Only install the libraries that are actually
# defined as CMake targets.
if (TARGET "${BROTLI_LIB}")
install (TARGETS ${BROTLI_LIB} DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)
endif()
endforeach(BROTLI_LIB ${BROTLI_LIBRARIES})
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
install (TARGETS zlib DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)
endif()
else ()
set(NATIVE_LIBS_EXTRA)
append_extra_compression_libs(NATIVE_LIBS_EXTRA)
if (GEN_SHARED_LIB)
include (GenerateExportHeader)
endif ()
if (GEN_SHARED_LIB)
add_definitions(-DVER_FILEDESCRIPTION_STR="System.IO.Compression.Native")
add_library(System.IO.Compression.Native
SHARED
${NATIVECOMPRESSION_SOURCES}
System.IO.Compression.Native.def
${VERSION_FILE_RC_PATH}
)
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
target_link_libraries(System.IO.Compression.Native PRIVATE zlib)
endif()
target_include_directories(System.IO.Compression.Native PUBLIC ${BROTLI_INCLUDE_DIRS})
target_link_libraries(System.IO.Compression.Native PUBLIC ${BROTLI_LIBRARIES})
endif ()
if (NOT GEN_SHARED_LIB AND NOT CLR_CMAKE_TARGET_MACCATALYST AND NOT CLR_CMAKE_TARGET_IOS AND NOT CLR_CMAKE_TARGET_TVOS AND NOT CLR_CMAKE_TARGET_ANDROID AND NOT CLR_CMAKE_TARGET_BROWSER AND NOT CLR_CMAKE_TARGET_WASI)
set(NATIVECOMPRESSION_SOURCES ${NATIVECOMPRESSION_SOURCES} entrypoints.c)
endif ()
add_library(System.IO.Compression.Native-Static
STATIC
${NATIVECOMPRESSION_SOURCES}
)
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
target_link_libraries(System.IO.Compression.Native-Static PRIVATE zlibstatic)
endif()
target_include_directories(System.IO.Compression.Native-Static PUBLIC ${BROTLI_INCLUDE_DIRS})
target_link_libraries(System.IO.Compression.Native-Static PUBLIC ${BROTLI_LIBRARIES})
if(STATIC_LIBS_ONLY)
add_library(System.IO.Compression.Native.Aot
STATIC
${NATIVECOMPRESSION_SOURCES}
)
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
target_link_libraries(System.IO.Compression.Native.Aot PRIVATE zlibstatic)
endif()
target_include_directories(System.IO.Compression.Native.Aot PUBLIC ${BROTLI_INCLUDE_DIRS})
target_link_libraries(System.IO.Compression.Native.Aot PUBLIC ${BROTLI_LIBRARIES})
set_target_properties(System.IO.Compression.Native.Aot PROPERTIES INTERPROCEDURAL_OPTIMIZATION OFF)
endif()
if (GEN_SHARED_LIB)
GENERATE_EXPORT_HEADER( System.IO.Compression.Native
BASE_NAME System.IO.Compression.Native
EXPORT_MACRO_NAME System.IO.Compression.Native_EXPORT
EXPORT_FILE_NAME System.IO.Compression.Native_Export.h
STATIC_DEFINE System.IO.Compression.Native_BUILT_AS_STATIC
)
install (TARGETS System.IO.Compression.Native DESTINATION .)
install (FILES $<TARGET_PDB_FILE:System.IO.Compression.Native> DESTINATION .)
endif ()
if(STATIC_LIBS_ONLY)
install_static_library(System.IO.Compression.Native.Aot aotsdk nativeaot)
foreach(BROTLI_LIB ${BROTLI_LIBRARIES})
# Brotli's build scripts can add some system dependencies like libm
# to BROTLI_LIBRARIES. Only install the libraries that are actually
# defined as CMake targets.
if (TARGET "${BROTLI_LIB}")
install_static_library(${BROTLI_LIB} aotsdk nativeaot)
endif()
endforeach(BROTLI_LIB ${BROTLI_LIBRARIES})
if (NOT CLR_CMAKE_USE_SYSTEM_ZLIB)
install_static_library(zlib aotsdk nativeaot)
endif()
endif()
endif ()
install (TARGETS System.IO.Compression.Native-Static DESTINATION ${STATIC_LIB_DESTINATION} COMPONENT libs)