X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=CMakeLists.txt;h=a27d1a6fd21edfec175b7b252cf2cbc89f95be24;hp=f6b7f65be53d8dd525fa4ca34627dc5ac3a3ea17;hb=07c41b7cebcc87a313a5bfccd50a7949d126180a;hpb=53f09c31bd4e59ffc1830660aebb221f52b06a6f diff --git a/CMakeLists.txt b/CMakeLists.txt index f6b7f65b..a27d1a6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,14 +11,8 @@ cmake_minimum_required(VERSION 3.5) # Tell CMake about or own modules set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) -# Versions -set(QUASSEL_MAJOR 0) -set(QUASSEL_MINOR 13) -set(QUASSEL_PATCH 50) -set(QUASSEL_VERSION_STRING "0.14-pre") - -# Output CMake and Quassel versions as well as build type for debug reasons -message(STATUS "Building Quassel ${QUASSEL_VERSION_STRING}...") +include(QuasselVersion) + message(STATUS "Using CMake ${CMAKE_VERSION}") # Set up build type rather early @@ -113,8 +107,8 @@ if (NOT EMBED_DEFAULT) endif() # The following options are not for end-user consumption, so don't list them in the feature summary -cmake_dependent_option(DEPLOY "Add required libs to bundle resources and create a dmg. Note: requires Qt to be built with 10.4u SDK" OFF "APPLE" OFF) - +option(FATAL_WARNINGS "Make compile warnings fatal (most useful for CI builds)" OFF) +cmake_dependent_option(DEPLOY "Add required libs to bundle resources and create a dmg" OFF "APPLE" OFF) # List of authenticators and the cmake flags to build them # (currently that's just LDAP, but more can be added here). @@ -124,11 +118,25 @@ option(WITH_LDAP "Enable LDAP authentication support if present on system" ON) # Setup CMake ##################################################################### +# Visibility settings apply to all targets +if (POLICY CMP0063) + cmake_policy(SET CMP0063 NEW) +endif() + # Let automoc/autouic process generated files if (POLICY CMP0071) cmake_policy(SET CMP0071 NEW) endif() +set(BUILD_SHARED_LIBS TRUE CACHE BOOL "" FORCE) + +# Don't use X11 on OSX +if (APPLE) + set(CMAKE_DISABLE_FIND_PACKAGE_X11 true) + set(CMAKE_DISABLE_FIND_PACKAGE_XCB true) + set(CMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras true) +endif() + # Simplify later checks ##################################################################### @@ -139,7 +147,6 @@ if (WANT_MONO OR WANT_CORE) set(BUILD_CORE true) endif() - # Set up Qt ##################################################################### @@ -312,17 +319,22 @@ if (BUILD_CORE) if (WITH_LDAP) find_package(Ldap QUIET) - if (LDAP_FOUND) - message(STATUS "Enabling LDAP authentication support") - else() - message(STATUS "Disabling LDAP authentication support") - endif() - else() - message(STATUS "Not enabling LDAP authentication support") + set_package_properties(Ldap PROPERTIES TYPE OPTIONAL + URL "http://www.openldap.org/" + DESCRIPTION "LDAP (Lightweight Directory Access Protocol) libraries" + PURPOSE "Enables core user authentication via LDAP" + ) endif() endif() # Non-Qt-based packages +##################################################################### + +find_package(Boost 1.56 REQUIRED) +set_package_properties(Boost PROPERTIES TYPE REQUIRED + URL "https://www.boost.org/" + DESCRIPTION "Boost libraries for C++" +) find_package(ZLIB REQUIRED) set_package_properties(ZLIB PROPERTIES TYPE REQUIRED @@ -340,7 +352,33 @@ if (NOT WIN32) ) endif() +# Setup unit testing +##################################################################### + +option(BUILD_TESTING "Enable unit tests" OFF) +add_feature_info(BUILD_TESTING BUILD_TESTING "Build unit tests") + +if (BUILD_TESTING) + find_package(GTest QUIET) + set_package_properties(GTest PROPERTIES TYPE REQUIRED + DESCRIPTION "Google's unit testing framework" + PURPOSE "Required for building unit tests" + ) + + find_package(Qt5Test QUIET) + set_package_properties(Qt5Test PROPERTIES TYPE REQUIRED + DESCRIPTION "unit testing library for the Qt5 framework" + PURPOSE "Required for building unit tests" + ) + enable_testing() + + # GTest messes with CMAKE_CXX_FLAGS, so process them again + process_cmake_cxx_flags() +endif() + # Check for SSL support in Qt +##################################################################### + cmake_push_check_state(RESET) set(CMAKE_REQUIRED_LIBRARIES Qt5::Core) check_cxx_source_compiles(" @@ -357,39 +395,47 @@ if (HAVE_SSL) endif() add_feature_info("SSL support in Qt" HAVE_SSL "Use secure network connections") -# Additional compile settings -##################################################################### - -# Needed to compile with mingw without kde -if (MINGW AND NOT WITH_KDE) - add_definitions(-D_WIN32_WINNT=0x0500) - message(STATUS "Added _WIN32_WINNT=0x0500 definition for MinGW") - # workaround for bug in mingw gcc 4.0 - add_definitions(-U__STRICT_ANSI__) -endif() - # Setup support for KDE Frameworks ##################################################################### -# We want to do this up here, so we have the necessary variables and defines set before -# compiling anything - if (WITH_KDE) + add_definitions(-DHAVE_KDE -DHAVE_KF5) + set(WITH_KF5 TRUE) + # If KDE Frameworks are present, they're most probably providing Qt5 integration including icon loading set(EMBED_DATA OFF) include(KDEInstallDirs) - include(KDECompilerSettings) - include(KDECMakeSettings) - - kde_enable_exceptions() - add_definitions(-DHAVE_KDE -DHAVE_KF5) - set(WITH_KF5 TRUE) endif() # This needs to come after setting up KDE integration, so we can use KDE-specific paths include(QuasselInstallDirs) +# RPATH and output settings +##################################################################### + +# Build artifacts in a well-known location; especially important for Windows DLLs +# (which go into RUNTIME_OUTPUT_DIRECTORY and can thus be found by executables) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") + +# These RPATH settings allow for running directly from the build dir +set(CMAKE_SKIP_BUILD_RPATH FALSE) +set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) +set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE ) + +# Set install RPATH only if libdir isn't a system directory +if (IS_ABSOLUTE "${CMAKE_INSTALL_LIBDIR}") + set(libdir "${CMAKE_INSTALL_LIBDIR}") +else() + set(libdir "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") +endif() +list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${libdir}" is_systemdir) +if ("${is_systemdir}" STREQUAL "-1") + set(CMAKE_INSTALL_RPATH "${libdir}") +endif() + # Various config-dependent checks and settings ##################################################################### @@ -415,52 +461,10 @@ endif() if (WIN32) link_libraries(imm32 winmm dbghelp Secur32) # missing by default :/ if (MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /DNOMINMAX") - set(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBUGINFO "/debug /INCREMENTAL:YES /NODEFAULTLIB:libcmt /DEFAULTLIB:msvcrt") - set(CMAKE_EXE_LINKER_FLAGS_DEBUG "/debug /INCREMENTAL:YES /NODEFAULTLIB:libcmt") - set(CMAKE_EXE_LINKER_FLAGS_DEBUGFULL "${CMAKE_EXE_LINKER_FLAGS_DEBUG}") link_libraries(Version dwmapi shlwapi) endif() endif() - -# Generate version information from Git -##################################################################### - -include(GetGitRevisionDescription) -get_git_head_revision(GIT_REFSPEC GIT_HEAD) -git_describe(GIT_DESCRIBE --long) - -# If in a Git repo we can get the commit-date from a git command -if (GIT_HEAD) - execute_process( - COMMAND git -c log.showsignature=false show -s --format=%ct - WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} - OUTPUT_VARIABLE GIT_COMMIT_DATE - OUTPUT_STRIP_TRAILING_WHITESPACE - ) -endif() - -# If not in a Git repo try to read GIT_HEAD and GIT_DESCRIBE from -# enviroment -if (NOT GIT_HEAD OR NOT GIT_DESCRIBE) - if (DEFINED ENV{GIT_HEAD}) - set(GIT_HEAD $ENV{GIT_HEAD}) - endif() - if (DEFINED ENV{GIT_DESCRIBE}) - set(GIT_DESCRIBE $ENV{GIT_DESCRIBE}) - endif() -endif() - -# Sanitize things if we're not in a Git repo -if (NOT GIT_HEAD OR NOT GIT_DESCRIBE) - set(GIT_HEAD "") - set(GIT_DESCRIBE "") - set(GIT_COMMIT_DATE 0) -endif() - -configure_file(version.h.in ${CMAKE_BINARY_DIR}/version.h @ONLY) - # Prepare the build ##################################################################### @@ -470,7 +474,6 @@ add_subdirectory(icons) add_subdirectory(pics) add_subdirectory(po) - # Set up and display feature summary ##################################################################### @@ -485,3 +488,8 @@ feature_summary(WHAT ALL ##################################################################### add_subdirectory(src) + +# Build tests if so desired +if (BUILD_TESTING) + add_subdirectory(tests) +endif()