2010-08-07 09:10:44 -04:00
|
|
|
# Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
2017-06-09 17:40:36 -04:00
|
|
|
# Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
|
2010-08-07 09:10:44 -04:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 2 or (at your option)
|
|
|
|
# version 3 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-12-20 03:25:55 -05:00
|
|
|
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
|
|
|
|
project(KeePassXC)
|
|
|
|
|
2013-11-24 16:09:52 -05:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
2016-12-01 22:55:09 -05:00
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo Debug DebugFull Profile MinSizeRel."
|
2013-11-24 16:09:52 -05:00
|
|
|
FORCE)
|
|
|
|
endif()
|
|
|
|
|
2012-05-21 17:37:29 -04:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
2010-09-11 13:49:30 -04:00
|
|
|
|
2017-05-05 20:20:27 -04:00
|
|
|
# Support Visual Studio Code
|
|
|
|
include(CMakeToolsHelpers OPTIONAL)
|
|
|
|
|
2012-05-21 14:33:33 -04:00
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
|
2010-08-13 12:08:06 -04:00
|
|
|
option(WITH_TESTS "Enable building of unit tests" ON)
|
2011-12-26 13:18:21 -05:00
|
|
|
option(WITH_GUI_TESTS "Enable building of GUI tests" OFF)
|
2015-10-13 16:51:31 -04:00
|
|
|
option(WITH_DEV_BUILD "Use only for development. Disables/warns about deprecated methods." OFF)
|
2017-10-15 18:27:07 -04:00
|
|
|
option(WITH_ASAN "Enable address sanitizer checks (Linux / macOS only)" OFF)
|
2017-03-15 10:26:40 -04:00
|
|
|
option(WITH_COVERAGE "Use to build with coverage tests (GCC only)." OFF)
|
2017-10-15 08:54:27 -04:00
|
|
|
option(WITH_APP_BUNDLE "Enable Application Bundle for macOS" ON)
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2017-03-02 22:07:42 -05:00
|
|
|
option(WITH_XC_AUTOTYPE "Include Auto-Type." ON)
|
|
|
|
option(WITH_XC_HTTP "Include KeePassHTTP and Custom Icon Downloads." OFF)
|
2017-02-25 11:11:02 -05:00
|
|
|
option(WITH_XC_YUBIKEY "Include YubiKey support." OFF)
|
2017-10-29 11:17:24 -04:00
|
|
|
option(WITH_XC_SSHAGENT "Include SSH agent support." OFF)
|
2017-12-12 03:15:23 -05:00
|
|
|
option(WITH_XC_BROWSER "Include browser extension support." OFF)
|
2016-12-04 13:57:24 -05:00
|
|
|
|
2017-05-06 11:50:05 -04:00
|
|
|
# Process ui files automatically from source files
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
|
|
|
|
set(KEEPASSXC_VERSION_MAJOR "2")
|
2017-06-20 23:12:57 -04:00
|
|
|
set(KEEPASSXC_VERSION_MINOR "2")
|
2017-12-13 12:51:55 -05:00
|
|
|
set(KEEPASSXC_VERSION_PATCH "4")
|
2017-05-06 11:50:05 -04:00
|
|
|
set(KEEPASSXC_VERSION "${KEEPASSXC_VERSION_MAJOR}.${KEEPASSXC_VERSION_MINOR}.${KEEPASSXC_VERSION_PATCH}")
|
2010-08-13 12:08:06 -04:00
|
|
|
|
2017-10-16 11:47:19 -04:00
|
|
|
# Distribution info
|
2017-10-17 06:56:42 -04:00
|
|
|
set(KEEPASSXC_DIST True)
|
2017-10-16 11:47:19 -04:00
|
|
|
set(KEEPASSXC_DIST_TYPE "Other" CACHE STRING "KeePassXC Distribution type")
|
|
|
|
set_property(CACHE KEEPASSXC_DIST_TYPE PROPERTY STRINGS Snap AppImage Other)
|
2017-10-17 06:56:42 -04:00
|
|
|
if(KEEPASSXC_DIST_TYPE STREQUAL "Snap")
|
|
|
|
set(KEEPASSXC_DIST_SNAP True)
|
|
|
|
elseif(KEEPASSXC_DIST_TYPE STREQUAL "AppImage")
|
|
|
|
set(KEEPASSXC_DIST_APPIMAGE True)
|
|
|
|
elseif(KEEPASSXC_DIST_TYPE STREQUAL "Other")
|
|
|
|
unset(KEEPASSXC_DIST)
|
2017-10-16 11:47:19 -04:00
|
|
|
endif()
|
2017-10-03 12:29:39 -04:00
|
|
|
|
2012-04-21 13:47:39 -04:00
|
|
|
if("${CMAKE_C_COMPILER}" MATCHES "clang$" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
|
2012-04-18 10:10:40 -04:00
|
|
|
set(CMAKE_COMPILER_IS_CLANG 1)
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-21 13:47:39 -04:00
|
|
|
|
|
|
|
if("${CMAKE_CXX_COMPILER}" MATCHES "clang(\\+\\+)?$" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
set(CMAKE_COMPILER_IS_CLANGXX 1)
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-18 10:10:40 -04:00
|
|
|
|
2012-04-21 13:47:39 -04:00
|
|
|
macro(add_gcc_compiler_cxxflags FLAGS)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${FLAGS}")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-21 13:47:39 -04:00
|
|
|
endmacro(add_gcc_compiler_cxxflags)
|
|
|
|
|
|
|
|
macro(add_gcc_compiler_cflags FLAGS)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${FLAGS}")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-21 13:47:39 -04:00
|
|
|
endmacro(add_gcc_compiler_cflags)
|
|
|
|
|
|
|
|
macro(add_gcc_compiler_flags FLAGS)
|
|
|
|
add_gcc_compiler_cxxflags("${FLAGS}")
|
|
|
|
add_gcc_compiler_cflags("${FLAGS}")
|
|
|
|
endmacro(add_gcc_compiler_flags)
|
2012-04-18 10:10:40 -04:00
|
|
|
|
2016-11-02 21:01:02 -04:00
|
|
|
add_definitions(-DQT_NO_EXCEPTIONS -DQT_STRICT_ITERATORS -DQT_NO_CAST_TO_ASCII)
|
2011-11-20 04:14:50 -05:00
|
|
|
|
2017-05-05 13:49:52 -04:00
|
|
|
if(WITH_APP_BUNDLE)
|
|
|
|
add_definitions(-DWITH_APP_BUNDLE)
|
|
|
|
endif()
|
|
|
|
|
2017-03-10 12:09:46 -05:00
|
|
|
add_gcc_compiler_flags("-fno-common")
|
2017-11-27 14:39:44 -05:00
|
|
|
add_gcc_compiler_flags("-Wall -Werror -Wextra -Wundef -Wpointer-arith -Wno-long-long")
|
2012-05-21 14:33:33 -04:00
|
|
|
add_gcc_compiler_flags("-Wformat=2 -Wmissing-format-attribute")
|
2013-04-05 15:04:02 -04:00
|
|
|
add_gcc_compiler_flags("-fvisibility=hidden")
|
|
|
|
add_gcc_compiler_cxxflags("-fvisibility-inlines-hidden")
|
2012-04-18 10:10:40 -04:00
|
|
|
|
2017-03-10 12:09:46 -05:00
|
|
|
if((CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.8.999) OR CMAKE_COMPILER_IS_CLANGXX)
|
|
|
|
add_gcc_compiler_flags("-fstack-protector-strong")
|
|
|
|
else()
|
|
|
|
add_gcc_compiler_flags("-fstack-protector --param=ssp-buffer-size=4")
|
|
|
|
endif()
|
|
|
|
|
2012-04-21 13:47:39 -04:00
|
|
|
add_gcc_compiler_cxxflags("-fno-exceptions -fno-rtti")
|
|
|
|
add_gcc_compiler_cxxflags("-Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual")
|
2012-05-21 14:33:33 -04:00
|
|
|
add_gcc_compiler_cflags("-Wchar-subscripts -Wwrite-strings")
|
2017-10-15 08:54:27 -04:00
|
|
|
|
2017-03-14 09:29:09 -04:00
|
|
|
if(WITH_ASAN)
|
2017-10-15 18:27:07 -04:00
|
|
|
if(NOT (CMAKE_SYSTEM_NAME STREQUAL "Linux" OR APPLE))
|
|
|
|
message(FATAL_ERROR "WITH_ASAN is only supported on Linux / macOS at the moment.")
|
2017-03-14 16:24:32 -04:00
|
|
|
endif()
|
|
|
|
|
2017-03-14 10:32:48 -04:00
|
|
|
add_gcc_compiler_flags("-fsanitize=address -DWITH_ASAN")
|
2017-03-14 09:53:29 -04:00
|
|
|
|
2017-10-15 18:27:07 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
2017-10-15 08:54:27 -04:00
|
|
|
if(NOT (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9))
|
|
|
|
add_gcc_compiler_flags("-fsanitize=leak -DWITH_LSAN")
|
|
|
|
endif()
|
2017-03-14 09:53:29 -04:00
|
|
|
endif()
|
2017-10-15 08:54:27 -04:00
|
|
|
|
2017-03-14 09:29:09 -04:00
|
|
|
endif()
|
2012-05-21 14:33:33 -04:00
|
|
|
|
2013-11-24 15:40:19 -05:00
|
|
|
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
|
2017-03-10 07:23:46 -05:00
|
|
|
if (CMAKE_BUILD_TYPE_LOWER MATCHES "(release|relwithdebinfo|minsizerel)")
|
2018-01-03 14:18:45 -05:00
|
|
|
add_gcc_compiler_flags("-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2")
|
2013-11-24 15:40:19 -05:00
|
|
|
endif()
|
|
|
|
|
2012-05-21 14:33:33 -04:00
|
|
|
check_c_compiler_flag("-Werror=format-security -Werror=implicit-function-declaration" WERROR_C_AVAILABLE)
|
|
|
|
check_cxx_compiler_flag("-Werror=format-security" WERROR_CXX_AVAILABLE)
|
|
|
|
if(WERROR_C_AVAILABLE AND WERROR_CXX_AVAILABLE)
|
|
|
|
add_gcc_compiler_flags("-Werror=format-security")
|
|
|
|
add_gcc_compiler_cflags("-Werror=implicit-function-declaration")
|
|
|
|
endif()
|
2010-11-22 08:57:19 -05:00
|
|
|
|
2013-04-30 12:24:41 -04:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wcast-align")
|
2016-11-04 00:47:04 -04:00
|
|
|
|
2016-11-04 00:52:00 -04:00
|
|
|
if(WITH_COVERAGE)
|
|
|
|
# Include code coverage, use with -DCMAKE_BUILD_TYPE=Coverage
|
|
|
|
include(CodeCoverage)
|
|
|
|
setup_target_for_coverage(kp_coverage "make test" coverage)
|
|
|
|
endif()
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-21 13:47:39 -04:00
|
|
|
|
2013-04-30 12:24:41 -04:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wcast-align")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2010-09-23 17:36:25 -04:00
|
|
|
|
2012-04-21 13:47:39 -04:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
2017-03-10 07:23:46 -05:00
|
|
|
if (CMAKE_COMPILER_IS_CLANGXX)
|
|
|
|
add_gcc_compiler_flags("-Qunused-arguments")
|
|
|
|
endif()
|
|
|
|
add_gcc_compiler_flags("-pie -fPIE")
|
2012-04-21 13:47:39 -04:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed -Wl,--no-undefined")
|
2017-03-10 07:23:46 -05:00
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,relro,-z,now")
|
2012-07-12 16:33:20 -04:00
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed")
|
2017-03-10 07:23:46 -05:00
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-z,relro,-z,now")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2015-09-12 10:16:18 -04:00
|
|
|
add_gcc_compiler_cxxflags("-std=c++11")
|
2012-04-18 14:18:48 -04:00
|
|
|
|
2015-07-24 12:28:12 -04:00
|
|
|
if(APPLE)
|
|
|
|
add_gcc_compiler_cxxflags("-stdlib=libc++")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2012-04-18 14:18:48 -04:00
|
|
|
|
2015-07-24 12:28:12 -04:00
|
|
|
add_gcc_compiler_cflags("-ansi")
|
|
|
|
|
2015-10-13 16:51:31 -04:00
|
|
|
if(WITH_DEV_BUILD)
|
|
|
|
add_definitions(-DQT_DEPRECATED_WARNINGS -DGCRYPT_NO_DEPRECATED)
|
2012-06-29 08:14:58 -04:00
|
|
|
endif()
|
|
|
|
|
2012-10-23 08:52:59 -04:00
|
|
|
if(MINGW)
|
|
|
|
set(CMAKE_RC_COMPILER_INIT windres)
|
|
|
|
enable_language(RC)
|
|
|
|
set(CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> <FLAGS> -O coff <DEFINES> -i <SOURCE> -o <OBJECT>")
|
2017-04-09 18:52:54 -04:00
|
|
|
if(NOT (CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo"))
|
|
|
|
# Enable DEP and ASLR
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--nxcompat -Wl,--dynamicbase")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--nxcompat -Wl,--dynamicbase")
|
|
|
|
endif()
|
2012-10-23 08:52:59 -04:00
|
|
|
endif()
|
|
|
|
|
2017-05-05 13:49:52 -04:00
|
|
|
if(APPLE AND WITH_APP_BUNDLE OR MINGW)
|
2016-11-03 00:05:30 -04:00
|
|
|
set(PROGNAME KeePassXC)
|
2012-05-21 17:37:29 -04:00
|
|
|
else()
|
2016-11-03 00:05:30 -04:00
|
|
|
set(PROGNAME keepassxc)
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2017-05-05 13:49:52 -04:00
|
|
|
if(APPLE AND WITH_APP_BUNDLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local")
|
2012-05-21 14:24:06 -04:00
|
|
|
set(CMAKE_INSTALL_PREFIX "/Applications")
|
2017-10-05 23:15:23 -04:00
|
|
|
set(CMAKE_INSTALL_MANDIR "/usr/local/share/man")
|
2012-05-21 14:24:06 -04:00
|
|
|
endif()
|
|
|
|
|
2011-12-29 17:50:22 -05:00
|
|
|
if(MINGW)
|
2017-02-04 14:52:43 -05:00
|
|
|
set(CLI_INSTALL_DIR ".")
|
2017-12-12 03:15:23 -05:00
|
|
|
set(PROXY_INSTALL_DIR ".")
|
2012-07-18 14:58:49 -04:00
|
|
|
set(BIN_INSTALL_DIR ".")
|
|
|
|
set(PLUGIN_INSTALL_DIR ".")
|
|
|
|
set(DATA_INSTALL_DIR "share")
|
2017-05-05 13:49:52 -04:00
|
|
|
elseif(APPLE AND WITH_APP_BUNDLE)
|
2017-02-04 14:52:43 -05:00
|
|
|
set(CLI_INSTALL_DIR "/usr/local/bin")
|
2017-12-12 03:15:23 -05:00
|
|
|
set(PROXY_INSTALL_DIR "/usr/local/bin")
|
2012-07-18 14:58:49 -04:00
|
|
|
set(BIN_INSTALL_DIR ".")
|
2016-11-08 16:13:57 -05:00
|
|
|
set(PLUGIN_INSTALL_DIR "${PROGNAME}.app/Contents/PlugIns")
|
2012-07-18 14:58:49 -04:00
|
|
|
set(DATA_INSTALL_DIR "${PROGNAME}.app/Contents/Resources")
|
2012-05-21 17:37:29 -04:00
|
|
|
else()
|
2013-04-29 16:17:31 -04:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2017-02-04 14:52:43 -05:00
|
|
|
set(CLI_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}")
|
2017-12-12 03:15:23 -05:00
|
|
|
set(PROXY_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}")
|
2015-05-12 16:20:42 -04:00
|
|
|
set(BIN_INSTALL_DIR "${CMAKE_INSTALL_BINDIR}")
|
2016-11-03 00:05:30 -04:00
|
|
|
set(PLUGIN_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/keepassxc")
|
|
|
|
set(DATA_INSTALL_DIR "${CMAKE_INSTALL_DATADIR}/keepassxc")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2011-12-29 17:50:22 -05:00
|
|
|
|
2012-05-21 17:37:29 -04:00
|
|
|
if(WITH_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
endif(WITH_TESTS)
|
2010-08-13 12:08:06 -04:00
|
|
|
|
2017-10-15 18:27:07 -04:00
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
find_package(Qt5 COMPONENTS Core Network Concurrent Widgets Test LinguistTools DBus REQUIRED)
|
|
|
|
elseif(APPLE)
|
2017-10-15 19:28:26 -04:00
|
|
|
find_package(Qt5 COMPONENTS Core Network Concurrent Widgets Test LinguistTools REQUIRED
|
|
|
|
HINTS /usr/local/Cellar/qt/*/lib/cmake ENV PATH
|
|
|
|
)
|
|
|
|
find_package(Qt5 COMPONENTS MacExtras
|
2017-10-15 18:27:07 -04:00
|
|
|
HINTS /usr/local/Cellar/qt/*/lib/cmake ENV PATH
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
find_package(Qt5 COMPONENTS Core Network Concurrent Widgets Test LinguistTools REQUIRED)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(Qt5Core_VERSION VERSION_LESS "5.2.0")
|
|
|
|
message(FATAL_ERROR "Qt version 5.2.0 or higher is required")
|
2017-02-09 09:28:52 -05:00
|
|
|
endif()
|
2017-10-15 18:27:07 -04:00
|
|
|
|
2015-07-22 10:59:38 -04:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2017-10-15 18:27:07 -04:00
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
set(CMAKE_MACOSX_RPATH TRUE)
|
|
|
|
find_program(MACDEPLOYQT_EXE macdeployqt HINTS /usr/local/opt/qt5/bin ENV PATH)
|
|
|
|
if(NOT MACDEPLOYQT_EXE)
|
2017-10-15 19:28:26 -04:00
|
|
|
message(FATAL_ERROR "macdeployqt is required to build in macOS")
|
2017-10-15 18:27:07 -04:00
|
|
|
else()
|
|
|
|
message(STATUS "Using macdeployqt: ${MACDEPLOYQT_EXE}")
|
|
|
|
endif()
|
|
|
|
endif()
|
2012-05-26 10:20:32 -04:00
|
|
|
|
2014-11-04 12:50:07 -05:00
|
|
|
# Debian sets the the build type to None for package builds.
|
|
|
|
# Make sure we don't enable asserts there.
|
|
|
|
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS_NONE QT_NO_DEBUG)
|
2010-08-07 09:10:44 -04:00
|
|
|
|
2017-01-25 20:58:46 -05:00
|
|
|
find_package(LibGPGError REQUIRED)
|
|
|
|
|
2017-11-12 13:23:01 -05:00
|
|
|
find_package(Gcrypt 1.7.0 REQUIRED)
|
2010-09-11 13:49:30 -04:00
|
|
|
|
2010-09-23 16:27:59 -04:00
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
2017-08-13 06:07:05 -04:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${ZLIB_INCLUDE_DIR})
|
|
|
|
|
2017-10-15 08:02:34 -04:00
|
|
|
if(ZLIB_VERSION_STRING VERSION_LESS "1.2.0")
|
|
|
|
message(FATAL_ERROR "zlib 1.2.0 or higher is required to use the gzip format")
|
2012-05-21 17:37:29 -04:00
|
|
|
endif()
|
2010-09-24 07:32:05 -04:00
|
|
|
|
2014-05-26 03:41:54 -04:00
|
|
|
# Optional
|
2017-02-20 19:06:32 -05:00
|
|
|
if(WITH_XC_YUBIKEY)
|
|
|
|
find_package(YubiKey REQUIRED)
|
2014-05-26 03:41:54 -04:00
|
|
|
|
|
|
|
include_directories(SYSTEM ${YUBIKEY_INCLUDE_DIRS})
|
|
|
|
endif()
|
|
|
|
|
2012-10-13 05:05:50 -04:00
|
|
|
if(UNIX)
|
|
|
|
check_cxx_source_compiles("#include <sys/prctl.h>
|
|
|
|
int main() { prctl(PR_SET_DUMPABLE, 0); return 0; }"
|
|
|
|
HAVE_PR_SET_DUMPABLE)
|
|
|
|
|
|
|
|
check_cxx_source_compiles("#include <sys/resource.h>
|
|
|
|
int main() {
|
|
|
|
struct rlimit limit;
|
|
|
|
limit.rlim_cur = 0;
|
|
|
|
limit.rlim_max = 0;
|
|
|
|
setrlimit(RLIMIT_CORE, &limit);
|
|
|
|
return 0;
|
|
|
|
}" HAVE_RLIMIT_CORE)
|
|
|
|
|
|
|
|
if(APPLE)
|
2012-10-23 11:06:50 -04:00
|
|
|
check_cxx_source_compiles("#include <sys/types.h>
|
|
|
|
#include <sys/ptrace.h>
|
2012-10-13 05:05:50 -04:00
|
|
|
int main() { ptrace(PT_DENY_ATTACH, 0, 0, 0); return 0; }"
|
|
|
|
HAVE_PT_DENY_ATTACH)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2017-02-15 18:44:20 -05:00
|
|
|
include_directories(SYSTEM ${GCRYPT_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR})
|
2011-11-12 08:30:16 -05:00
|
|
|
|
2015-07-22 10:59:38 -04:00
|
|
|
include(FeatureSummary)
|
2013-06-30 08:07:25 -04:00
|
|
|
|
2010-08-07 09:10:44 -04:00
|
|
|
add_subdirectory(src)
|
2011-12-29 17:50:22 -05:00
|
|
|
add_subdirectory(share)
|
2012-05-21 17:37:29 -04:00
|
|
|
if(WITH_TESTS)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif(WITH_TESTS)
|
2013-06-30 08:07:25 -04:00
|
|
|
|
|
|
|
if(PRINT_SUMMARY)
|
2016-12-04 13:57:24 -05:00
|
|
|
# This will print ENABLED, REQUIRED and DISABLED
|
2013-06-30 08:07:25 -04:00
|
|
|
feature_summary(WHAT ALL)
|
2016-12-04 13:57:24 -05:00
|
|
|
else()
|
|
|
|
# This will only print ENABLED and DISABLED feature
|
2017-04-10 16:05:53 -04:00
|
|
|
feature_summary(WHAT ENABLED_FEATURES DESCRIPTION "Enabled features:")
|
|
|
|
feature_summary(WHAT DISABLED_FEATURES DESCRIPTION "Disabled features:")
|
2013-06-30 08:07:25 -04:00
|
|
|
endif()
|