-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
150 lines (132 loc) · 4.52 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
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(unarr VERSION 1.0.0 LANGUAGES C)
set(PROJECT_DESCRIPTION
"A decompression library for rar, tar and zip files.")
include(GNUInstallDirs)
# Set build type to default if unset.
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
"MinSizeRel" "RelWithDebInfo")
endif()
# Build options
option(BUILD_SHARED_LIBS "Build ${PROJECT_NAME} as a shared library" ON)
# Build target
add_library(unarr
_7z/_7z.h
_7z/_7z.c
common/allocator.h
common/unarr-imp.h
common/conv.c
common/crc32.c
#common/custalloc.c
common/stream.c
common/unarr.c
lzmasdk/7zTypes.h
lzmasdk/CpuArch.h
lzmasdk/Ppmd.h
lzmasdk/Ppmd7.h
lzmasdk/Ppmd8.h
lzmasdk/Precomp.h
lzmasdk/CpuArch.c
lzmasdk/Ppmd7.c
lzmasdk/Ppmd8.c
lzmasdk/Ppmd7Dec.c
lzmasdk/Ppmd8Dec.c
rar/lzss.h
rar/rar.h
rar/rarvm.h
rar/filter-rar.c
rar/uncompress-rar.c
rar/huffman-rar.c
rar/rar.c
rar/rarvm.c
rar/parse-rar.c
tar/tar.h
tar/parse-tar.c
tar/tar.c
zip/inflate.h
zip/zip.h
zip/inflate.c
zip/parse-zip.c
zip/uncompress-zip.c
zip/zip.c)
set_target_properties(unarr PROPERTIES
PUBLIC_HEADER unarr.h
C_VISIBILITY_PRESET hidden
C_STANDARD 99
C_STANDARD_REQUIRED ON
DEFINE_SYMBOL UNARR_EXPORT_SYMBOLS
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR})
if(BUILD_SHARED_LIBS)
target_compile_definitions(unarr PUBLIC UNARR_IS_SHARED_LIBRARY)
endif()
find_package(BZip2)
if(BZIP2_FOUND)
target_include_directories(unarr PRIVATE ${BZIP_INCLUDE_DIRS})
target_link_libraries(unarr ${BZIP2_LIBRARIES})
target_compile_definitions(unarr PRIVATE -DHAVE_BZIP2)
# Bzip2 upstream does not supply a .pc file. Add it to Libs.private.
set(PROJECT_LIBS_PRIVATE "-I${BZIP_INCLUDE_DIRS} -l${BZIP2_LIBRARIES}")
endif()
find_package(LibLZMA)
if(LIBLZMA_FOUND)
target_include_directories(unarr PRIVATE ${LIBLZMA_INCLUDE_DIRS})
target_link_libraries(unarr ${LIBLZMA_LIBRARIES})
target_compile_definitions(unarr PRIVATE -DHAVE_LIBLZMA)
set(PROJECT_REQUIRES_PRIVATE "${UNARR_REQUIRES_PRIVATE} liblzma")
else()
target_sources(unarr PRIVATE
lzmasdk/LzmaDec.h
lzmasdk/LzmaDec.c)
endif()
find_package(ZLIB)
if(ZLIB_FOUND)
target_include_directories(unarr PRIVATE ${ZLIB_INCLUDE_DIRS})
target_link_libraries(unarr ${ZLIB_LIBRARIES})
target_compile_definitions(unarr PRIVATE -DHAVE_ZLIB)
# Add zlib to libunarr.pc Requires.private
set(PROJECT_REQUIRES_PRIVATE "${PROJECT_REQUIRES_PRIVATE} zlib")
endif()
# Compiler specific settings
if(UNIX OR MINGW OR MSYS)
target_compile_options(unarr PRIVATE -Wall -Wextra -pedantic
-Wstrict-prototypes -Wmissing-prototypes
-Werror-implicit-function-declaration
$<$<CONFIG:Release>:-fomit-frame-pointer>
$<$<OR:$<C_COMPILER_ID:Clang>,$<C_COMPILER_ID:AppleClang>>:
-Wno-missing-field-initializers>
-flto)
target_compile_definitions(unarr PRIVATE -D_FILE_OFFSET_BITS=64)
# Linker flags
# Clang linker needs -flto too when doing lto
if("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
set_target_properties(unarr PROPERTIES LINK_FLAGS
"-Wl,--no-undefined -Wl,--as-needed -flto")
# Apple ld uses different syntax for undefined symbol check
elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "AppleClang")
set_target_properties(unarr PROPERTIES LINK_FLAGS
"-Wl,-undefined,error -flto")
else()
set_target_properties(unarr PROPERTIES LINK_FLAGS
"-Wl,--no-undefined -Wl,--as-needed")
endif()
endif()
if(MSVC)
target_compile_options(unarr PRIVATE /W3
$<$<CONFIG:Release>:/Ox>)
target_compile_definitions(unarr PRIVATE _CRT_SECURE_NO_WARNINGS)
endif()
# Write pkg-config file
configure_file("pkg-config.pc.cmake" "lib${PROJECT_NAME}.pc" @ONLY)
# Install library and header
install(TARGETS unarr
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
# Install pkg-config file
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${PROJECT_NAME}.pc
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)