]>
Commit | Line | Data |
---|---|---|
1 | # Copyright (C) 2009, 2016 Julian Andres Klode <jak@debian.org>. | |
2 | # Licensed under the same terms as APT; i.e. GPL 2 or later. | |
3 | ||
4 | # set minimum version | |
5 | project(apt) | |
6 | cmake_minimum_required(VERSION 3.4.0) | |
7 | ||
8 | enable_testing() | |
9 | ||
10 | option(WITH_DOC "Build documentation." ON) | |
11 | option(USE_NLS "Localisation support." ON) | |
12 | ||
13 | set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMake") | |
14 | ||
15 | # Work around bug in GNUInstallDirs | |
16 | if (EXISTS "/etc/debian_version") | |
17 | set(CMAKE_INSTALL_LIBEXECDIR "lib") | |
18 | endif() | |
19 | ||
20 | # Include stuff | |
21 | include(Misc) | |
22 | include(Translations) | |
23 | include(CheckIncludeFiles) | |
24 | include(CheckFunctionExists) | |
25 | include(CheckStructHasMember) | |
26 | include(GNUInstallDirs) | |
27 | include(TestBigEndian) | |
28 | find_package(Threads) | |
29 | find_package(PkgConfig) | |
30 | find_package(LFS REQUIRED) | |
31 | ||
32 | # Add large file support | |
33 | add_compile_options(${LFS_COMPILE_OPTIONS}) | |
34 | add_definitions(${LFS_DEFINITIONS}) | |
35 | link_libraries(${LFS_LIBRARIES}) | |
36 | ||
37 | # Set compiler flags | |
38 | set(CMAKE_CXX_STANDARD 11) | |
39 | set(CMAKE_CXX_STANDARD_REQUIRED ON) | |
40 | set(CMAKE_VISIBILITY_INLINES_HIDDEN 1) | |
41 | ||
42 | add_optional_compile_options(Wall) | |
43 | add_optional_compile_options(Wextra) | |
44 | add_optional_compile_options(Wcast-align) | |
45 | add_optional_compile_options(Wlogical-op) | |
46 | add_optional_compile_options(Wredundant-decls) | |
47 | add_optional_compile_options(Wmissing-declarations) | |
48 | add_optional_compile_options(Wunsafe-loop-optimizations) | |
49 | add_optional_compile_options(Wctor-dtor-privacy) | |
50 | add_optional_compile_options(Wdisabled-optimization) | |
51 | add_optional_compile_options(Winit-self) | |
52 | add_optional_compile_options(Wmissing-include-dirs) | |
53 | add_optional_compile_options(Wnoexcept) | |
54 | add_optional_compile_options(Wsign-promo) | |
55 | add_optional_compile_options(Wundef) | |
56 | ||
57 | # apt-ftparchive dependencies | |
58 | find_package(BerkeleyDB REQUIRED) | |
59 | if (BERKELEY_DB_FOUND) | |
60 | set(HAVE_BDB 1) | |
61 | endif() | |
62 | ||
63 | ||
64 | # apt-transport-https dependencies | |
65 | find_package(CURL REQUIRED) | |
66 | if (CURL_FOUND) | |
67 | set(HAVE_CURL 1) | |
68 | endif() | |
69 | ||
70 | # (De)Compressor libraries | |
71 | find_package(ZLIB REQUIRED) | |
72 | if (ZLIB_FOUND) | |
73 | set(HAVE_ZLIB 1) | |
74 | endif() | |
75 | ||
76 | ||
77 | find_package(BZip2) | |
78 | if (BZIP2_FOUND) | |
79 | set(HAVE_BZ2 1) | |
80 | endif() | |
81 | ||
82 | pkg_check_modules(LZMA liblzma) | |
83 | if (LZMA_FOUND) | |
84 | set(HAVE_LZMA 1) | |
85 | endif() | |
86 | ||
87 | pkg_check_modules(LZ4 liblz4) | |
88 | if (LZ4_FOUND) | |
89 | set(HAVE_LZ4 1) | |
90 | endif() | |
91 | ||
92 | # Mount()ing and stat()ing and friends | |
93 | ||
94 | check_function_exists(statvfs HAVE_STATVFS) | |
95 | if (NOT HAVE_STATVFS) | |
96 | check_symbol_exists(statfs sys/vfs.h HAVE_VFS_H) | |
97 | check_symbol_exists(statfs sys/mount.h HAVE_MOUNT_H) | |
98 | if (NOT HAVE_VFS_H AND NOT HAVE_MOUNT_H) | |
99 | message(FATAL_ERROR "Can find neither statvfs() nor statfs()") | |
100 | endif() | |
101 | configure_file(CMake/statvfs.h.in ${PROJECT_BINARY_DIR}/include/statvfs.h COPYONLY) | |
102 | endif() | |
103 | ||
104 | CHECK_STRUCT_HAS_MEMBER("struct statfs" f_type sys/vfs.h HAVE_STRUCT_STATFS_F_TYPE) | |
105 | ||
106 | # Other checks | |
107 | check_function_exists(getresuid HAVE_GETRESUID) | |
108 | check_function_exists(getresgid HAVE_GETRESGID) | |
109 | check_function_exists(setresuid HAVE_SETRESUID) | |
110 | check_function_exists(setresgid HAVE_SETRESGID) | |
111 | check_function_exists(ptsname_r HAVE_PTSNAME_R) | |
112 | check_function_exists(timegm HAVE_TIMEGM) | |
113 | test_big_endian(WORDS_BIGENDIAN) | |
114 | ||
115 | if (CMAKE_USE_PTHREADS_INIT) | |
116 | set(HAVE_PTHREAD 1) | |
117 | endif() | |
118 | ||
119 | # Configure some variables like package, version and architecture. | |
120 | set(PACKAGE ${PROJECT_NAME}) | |
121 | set(PACKAGE_MAIL "APT Development Team <deity@lists.debian.org>") | |
122 | set(PACKAGE_VERSION "1.3~rc2") | |
123 | ||
124 | if (NOT DEFINED COMMON_ARCH) | |
125 | execute_process(COMMAND dpkg-architecture -qDEB_HOST_ARCH | |
126 | OUTPUT_VARIABLE COMMON_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE) | |
127 | endif() | |
128 | ||
129 | # Configure our configuration headers (config.h and apti18n.h) | |
130 | configure_file(CMake/config.h.in ${PROJECT_BINARY_DIR}/include/config.h) | |
131 | configure_file(CMake/apti18n.h.in ${PROJECT_BINARY_DIR}/include/apti18n.h) | |
132 | ||
133 | # Generic header locations | |
134 | include_directories(${PROJECT_BINARY_DIR}/include) | |
135 | ||
136 | # Add our subdirectories | |
137 | add_subdirectory(vendor) | |
138 | add_subdirectory(apt-pkg) | |
139 | add_subdirectory(apt-private) | |
140 | add_subdirectory(apt-inst) | |
141 | add_subdirectory(cmdline) | |
142 | add_subdirectory(completions) | |
143 | add_subdirectory(doc) | |
144 | add_subdirectory(dselect) | |
145 | add_subdirectory(ftparchive) | |
146 | add_subdirectory(methods) | |
147 | add_subdirectory(po) | |
148 | add_subdirectory(test) | |
149 | ||
150 | # Link update-po4a into the update-po target | |
151 | add_dependencies(update-po update-po4a) | |
152 | ||
153 | # Create our directories. | |
154 | install_empty_directories( | |
155 | ${CMAKE_INSTALL_FULL_SYSCONFDIR}/apt/apt.conf.d | |
156 | ${CMAKE_INSTALL_FULL_SYSCONFDIR}/apt/preferences.d | |
157 | ${CMAKE_INSTALL_FULL_SYSCONFDIR}/apt/sources.list.d | |
158 | ${CMAKE_INSTALL_FULL_SYSCONFDIR}/apt/trusted.gpg.d | |
159 | ${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/cache/apt/archives/partial | |
160 | ${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/apt/lists/partial | |
161 | ${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/apt/mirrors/partial | |
162 | ${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/lib/apt/periodic | |
163 | ${CMAKE_INSTALL_FULL_LOCALSTATEDIR}/log/apt | |
164 | ) |