2010-08-07 15:10:44 +02:00
|
|
|
# Copyright (C) 2010 Felix Geyer <debfx@fobos.de>
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2013-11-24 22:09:52 +01:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
|
|
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
|
2016-12-02 03:55:09 +00:00
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo Debug DebugFull Profile MinSizeRel."
|
2013-11-24 22:09:52 +01:00
|
|
|
FORCE)
|
|
|
|
endif()
|
|
|
|
|
2016-11-03 00:05:30 -04:00
|
|
|
project(KeePassXC)
|
2010-08-07 15:10:44 +02:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
cmake_minimum_required(VERSION 2.8.12)
|
2010-08-07 15:10:44 +02:00
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2012-05-21 20:33:33 +02:00
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
include(CheckCXXCompilerFlag)
|
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
|
2010-08-13 18:08:06 +02:00
|
|
|
option(WITH_TESTS "Enable building of unit tests" ON)
|
2011-12-26 19:18:21 +01:00
|
|
|
option(WITH_GUI_TESTS "Enable building of GUI tests" OFF)
|
2015-10-13 22:51:31 +02:00
|
|
|
option(WITH_DEV_BUILD "Use only for development. Disables/warns about deprecated methods." OFF)
|
2016-11-04 00:52:00 -04:00
|
|
|
option(WITH_COVERAGE "Use to build with coverage tests. (GCC ONLY)." OFF)
|
2010-08-07 15:10:44 +02:00
|
|
|
|
2016-12-04 19:57:24 +01:00
|
|
|
option(WITH_XC_AUTOTYPE "Include Autotype." OFF)
|
|
|
|
option(WITH_XC_HTTP "Include KeePassHTTP." OFF)
|
|
|
|
option(WITH_XC_YUBIKEY "Include Yubikey support." OFF)
|
|
|
|
|
2016-11-03 00:05:30 -04:00
|
|
|
set(KEEPASSXC_VERSION "2.1.0")
|
|
|
|
set(KEEPASSXC_VERSION_NUM "2.1.0")
|
2010-08-13 18:08:06 +02:00
|
|
|
|
2012-04-21 19:47:39 +02:00
|
|
|
if("${CMAKE_C_COMPILER}" MATCHES "clang$" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "Clang")
|
2012-04-18 16:10:40 +02:00
|
|
|
set(CMAKE_COMPILER_IS_CLANG 1)
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2012-04-21 19:47:39 +02:00
|
|
|
|
|
|
|
if("${CMAKE_CXX_COMPILER}" MATCHES "clang(\\+\\+)?$" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
|
|
|
set(CMAKE_COMPILER_IS_CLANGXX 1)
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2012-04-18 16:10:40 +02:00
|
|
|
|
2012-04-21 19:47:39 +02: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 23:37:29 +02:00
|
|
|
endif()
|
2012-04-21 19:47:39 +02: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 23:37:29 +02:00
|
|
|
endif()
|
2012-04-21 19:47:39 +02: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 16:10:40 +02: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 10:14:50 +01:00
|
|
|
|
2013-11-24 21:40:19 +01:00
|
|
|
add_gcc_compiler_flags("-fno-common -fstack-protector --param=ssp-buffer-size=4")
|
2012-04-21 19:47:39 +02:00
|
|
|
add_gcc_compiler_flags("-Wall -Wextra -Wundef -Wpointer-arith -Wno-long-long")
|
2012-05-21 20:33:33 +02:00
|
|
|
add_gcc_compiler_flags("-Wformat=2 -Wmissing-format-attribute")
|
2013-04-05 21:04:02 +02:00
|
|
|
add_gcc_compiler_flags("-fvisibility=hidden")
|
|
|
|
add_gcc_compiler_cxxflags("-fvisibility-inlines-hidden")
|
2012-04-18 16:10:40 +02:00
|
|
|
|
2012-04-21 19:47:39 +02:00
|
|
|
add_gcc_compiler_cxxflags("-fno-exceptions -fno-rtti")
|
|
|
|
add_gcc_compiler_cxxflags("-Wnon-virtual-dtor -Wold-style-cast -Woverloaded-virtual")
|
2012-05-21 20:33:33 +02:00
|
|
|
add_gcc_compiler_cflags("-Wchar-subscripts -Wwrite-strings")
|
|
|
|
|
2013-11-24 21:40:19 +01:00
|
|
|
string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER)
|
|
|
|
if (CMAKE_BUILD_TYPE_LOWER MATCHES (release|relwithdebinfo|minsizerel))
|
|
|
|
add_gcc_compiler_flags("-D_FORTIFY_SOURCE=2")
|
|
|
|
endif()
|
|
|
|
|
2012-05-21 20:33:33 +02: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 14:57:19 +01:00
|
|
|
|
2013-04-30 18:24:41 +02: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 23:37:29 +02:00
|
|
|
endif()
|
2012-04-21 19:47:39 +02:00
|
|
|
|
2013-04-30 18:24:41 +02:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wcast-align")
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2010-09-23 23:36:25 +02:00
|
|
|
|
2012-04-21 19:47:39 +02:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed -Wl,--no-undefined")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,relro")
|
2012-07-12 22:33:20 +02:00
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-add-needed -Wl,--as-needed")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-z,relro")
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2010-08-07 15:10:44 +02:00
|
|
|
|
2015-09-12 16:16:18 +02:00
|
|
|
add_gcc_compiler_cxxflags("-std=c++11")
|
2012-04-18 20:18:48 +02:00
|
|
|
|
2015-07-24 18:28:12 +02:00
|
|
|
if(APPLE)
|
|
|
|
add_gcc_compiler_cxxflags("-stdlib=libc++")
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2012-04-18 20:18:48 +02:00
|
|
|
|
2015-07-24 18:28:12 +02:00
|
|
|
add_gcc_compiler_cflags("-ansi")
|
|
|
|
|
2015-10-13 22:51:31 +02:00
|
|
|
if(WITH_DEV_BUILD)
|
|
|
|
add_definitions(-DQT_DEPRECATED_WARNINGS -DGCRYPT_NO_DEPRECATED)
|
2012-06-29 14:14:58 +02:00
|
|
|
endif()
|
|
|
|
|
2012-10-23 14:52:59 +02: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>")
|
2016-10-24 19:45:35 +02:00
|
|
|
link_libraries(ws2_32 wsock32)
|
2012-10-23 14:52:59 +02:00
|
|
|
endif()
|
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
if(APPLE OR MINGW)
|
2016-11-03 00:05:30 -04:00
|
|
|
set(PROGNAME KeePassXC)
|
2012-05-21 23:37:29 +02:00
|
|
|
else()
|
2016-11-03 00:05:30 -04:00
|
|
|
set(PROGNAME keepassxc)
|
2012-05-21 23:37:29 +02:00
|
|
|
endif()
|
2010-08-07 15:10:44 +02:00
|
|
|
|
2012-05-21 20:24:06 +02:00
|
|
|
if(APPLE AND "${CMAKE_INSTALL_PREFIX}" STREQUAL "/usr/local")
|
|
|
|
set(CMAKE_INSTALL_PREFIX "/Applications")
|
|
|
|
endif()
|
|
|
|
|
2011-12-29 23:50:22 +01:00
|
|
|
if(MINGW)
|
2012-07-18 20:58:49 +02:00
|
|
|
set(BIN_INSTALL_DIR ".")
|
|
|
|
set(PLUGIN_INSTALL_DIR ".")
|
|
|
|
set(DATA_INSTALL_DIR "share")
|
2011-12-29 23:50:22 +01:00
|
|
|
elseif(APPLE)
|
2012-07-18 20:58:49 +02:00
|
|
|
set(BIN_INSTALL_DIR ".")
|
2016-11-08 22:13:57 +01:00
|
|
|
set(PLUGIN_INSTALL_DIR "${PROGNAME}.app/Contents/PlugIns")
|
2012-07-18 20:58:49 +02:00
|
|
|
set(DATA_INSTALL_DIR "${PROGNAME}.app/Contents/Resources")
|
2012-05-21 23:37:29 +02:00
|
|
|
else()
|
2013-04-29 22:17:31 +02:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2015-05-12 22:20:42 +02: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 23:37:29 +02:00
|
|
|
endif()
|
2011-12-29 23:50:22 +01:00
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
if(WITH_TESTS)
|
|
|
|
enable_testing()
|
|
|
|
endif(WITH_TESTS)
|
2010-08-13 18:08:06 +02:00
|
|
|
|
2015-07-22 20:53:49 +02:00
|
|
|
find_package(Qt5Core 5.2 REQUIRED)
|
|
|
|
find_package(Qt5Concurrent 5.2 REQUIRED)
|
|
|
|
find_package(Qt5Widgets 5.2 REQUIRED)
|
|
|
|
find_package(Qt5Test 5.2 REQUIRED)
|
|
|
|
find_package(Qt5LinguistTools 5.2 REQUIRED)
|
2016-04-03 10:25:01 -04:00
|
|
|
find_package(Qt5Network 5.2 REQUIRED)
|
2015-07-22 16:59:38 +02:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2012-05-26 16:20:32 +02:00
|
|
|
|
2014-11-04 18:50:07 +01: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 15:10:44 +02:00
|
|
|
|
2017-01-26 02:58:46 +01:00
|
|
|
find_package(LibGPGError REQUIRED)
|
|
|
|
|
2015-07-22 23:40:26 +02:00
|
|
|
find_package(Gcrypt 1.6.0 REQUIRED)
|
2010-09-11 19:49:30 +02:00
|
|
|
|
2017-01-24 00:26:16 +01:00
|
|
|
if (WITH_XC_HTTP)
|
|
|
|
find_package(LibMicroHTTPD REQUIRED)
|
|
|
|
endif(WITH_XC_HTTP)
|
2014-03-22 16:45:36 +00:00
|
|
|
|
2010-09-23 22:27:59 +02:00
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
2010-09-24 13:32:05 +02:00
|
|
|
check_cxx_source_compiles("
|
2012-05-21 23:37:29 +02:00
|
|
|
#include <zlib.h>
|
2010-09-24 13:32:05 +02:00
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
#if !defined(ZLIB_VERNUM) || (ZLIB_VERNUM < 0x1200)
|
|
|
|
#error zlib 1.2.x or higher is required to use the gzip format
|
|
|
|
#endif
|
2010-09-24 13:32:05 +02:00
|
|
|
|
2012-05-21 23:37:29 +02:00
|
|
|
int main() { return 0; }" ZLIB_SUPPORTS_GZIP)
|
2010-09-24 13:32:05 +02:00
|
|
|
|
|
|
|
if(NOT ZLIB_SUPPORTS_GZIP)
|
2012-05-21 23:37:29 +02:00
|
|
|
message(FATAL_ERROR "zlib 1.2.x or higher is required to use the gzip format")
|
|
|
|
endif()
|
2010-09-24 13:32:05 +02:00
|
|
|
|
2012-10-13 11:05:50 +02: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 17:06:50 +02:00
|
|
|
check_cxx_source_compiles("#include <sys/types.h>
|
|
|
|
#include <sys/ptrace.h>
|
2012-10-13 11:05:50 +02:00
|
|
|
int main() { ptrace(PT_DENY_ATTACH, 0, 0, 0); return 0; }"
|
|
|
|
HAVE_PT_DENY_ATTACH)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2016-10-24 19:45:35 +02:00
|
|
|
include_directories(SYSTEM ${GCRYPT_INCLUDE_DIR} ${MHD_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR})
|
2011-11-12 14:30:16 +01:00
|
|
|
|
2015-07-22 16:59:38 +02:00
|
|
|
include(FeatureSummary)
|
2013-06-30 14:07:25 +02:00
|
|
|
|
2010-08-07 15:10:44 +02:00
|
|
|
add_subdirectory(src)
|
2011-12-29 23:50:22 +01:00
|
|
|
add_subdirectory(share)
|
2011-07-06 20:23:29 +02:00
|
|
|
add_subdirectory(utils)
|
2012-05-21 23:37:29 +02:00
|
|
|
if(WITH_TESTS)
|
|
|
|
add_subdirectory(tests)
|
|
|
|
endif(WITH_TESTS)
|
2013-06-30 14:07:25 +02:00
|
|
|
|
|
|
|
if(PRINT_SUMMARY)
|
2016-12-04 19:57:24 +01:00
|
|
|
# This will print ENABLED, REQUIRED and DISABLED
|
2013-06-30 14:07:25 +02:00
|
|
|
feature_summary(WHAT ALL)
|
2016-12-04 19:57:24 +01:00
|
|
|
else()
|
|
|
|
# This will only print ENABLED and DISABLED feature
|
|
|
|
print_enabled_features()
|
|
|
|
print_disabled_features()
|
2013-06-30 14:07:25 +02:00
|
|
|
endif()
|