2021-06-10 22:15:39 +12:00
|
|
|
# Copyright (C) 2008 by BogDan Vatra < bogdan@licentia.eu >
|
|
|
|
# Copyright (C) 2009-2021 Robin Stuart <rstuart114@gmail.com>
|
2020-10-06 11:22:06 +13:00
|
|
|
# vim: set ts=4 sw=4 et :
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-07-27 02:29:05 +12:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
2008-09-19 02:44:52 +12:00
|
|
|
project(zint-package)
|
|
|
|
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
|
2021-03-12 00:41:13 +13:00
|
|
|
set(ZINT_VERSION_MAJOR 2)
|
2022-05-25 08:08:51 +12:00
|
|
|
set(ZINT_VERSION_MINOR 11)
|
2021-08-11 03:14:10 +12:00
|
|
|
set(ZINT_VERSION_RELEASE 0)
|
2022-05-25 08:08:51 +12:00
|
|
|
set(ZINT_VERSION_BUILD 0) # Set to 0 before release, set to 9 after release
|
2021-03-12 00:41:13 +13:00
|
|
|
set(ZINT_VERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}.${ZINT_VERSION_RELEASE}.${ZINT_VERSION_BUILD}")
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2020-10-06 11:22:06 +13:00
|
|
|
add_definitions(-DZINT_VERSION=\"${ZINT_VERSION}\")
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-03-12 00:41:13 +13:00
|
|
|
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
|
2008-09-19 02:44:52 +12:00
|
|
|
|
2021-07-27 02:29:05 +12:00
|
|
|
option(ZINT_DEBUG "Set debug compile flags" OFF)
|
2021-10-21 11:05:30 +13:00
|
|
|
option(ZINT_NOOPT "Set no optimize compile flags" OFF)
|
2021-03-17 12:38:47 +13:00
|
|
|
option(ZINT_SANITIZE "Set sanitize compile/link flags" OFF)
|
|
|
|
option(ZINT_TEST "Set test compile flag" OFF)
|
2021-07-27 02:29:05 +12:00
|
|
|
option(ZINT_COVERAGE "Set code coverage flags" OFF)
|
2021-03-17 12:38:47 +13:00
|
|
|
option(ZINT_STATIC "Build static library" OFF)
|
2021-03-30 03:35:57 +13:00
|
|
|
option(ZINT_USE_PNG "Build with PNG support" ON)
|
2022-05-19 21:17:51 +12:00
|
|
|
option(ZINT_USE_QT "Build with Qt support" ON)
|
2019-09-02 07:23:15 +12:00
|
|
|
|
2021-03-12 00:41:13 +13:00
|
|
|
include(SetPaths.cmake)
|
2008-09-24 21:00:44 +12:00
|
|
|
|
2020-10-06 11:22:06 +13:00
|
|
|
include(CheckCXXCompilerFlag)
|
2021-03-30 23:00:24 +13:00
|
|
|
include(CheckFunctionExists)
|
2009-05-22 09:00:23 +12:00
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
if(NOT MSVC) # Use default warnings if MSVC otherwise inundated
|
|
|
|
check_cxx_compiler_flag("-Wall" CXX_COMPILER_FLAG_WALL)
|
|
|
|
if(CXX_COMPILER_FLAG_WALL)
|
|
|
|
add_compile_options("-Wall")
|
|
|
|
endif()
|
2020-10-06 11:22:06 +13:00
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
check_cxx_compiler_flag("-Wextra" CXX_COMPILER_FLAG_WEXTRA)
|
|
|
|
if(CXX_COMPILER_FLAG_WEXTRA)
|
|
|
|
add_compile_options("-Wextra")
|
|
|
|
endif()
|
2020-10-06 11:22:06 +13:00
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
check_cxx_compiler_flag("-Wpedantic" CXX_COMPILER_FLAG_WPEDANTIC)
|
|
|
|
if(CXX_COMPILER_FLAG_WPEDANTIC)
|
|
|
|
add_compile_options("-Wpedantic")
|
|
|
|
endif()
|
2020-10-06 11:22:06 +13:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ZINT_DEBUG)
|
|
|
|
check_cxx_compiler_flag("-g" CXX_COMPILER_FLAG_G)
|
|
|
|
if(CXX_COMPILER_FLAG_G)
|
2019-09-02 07:23:15 +12:00
|
|
|
add_compile_options("-g")
|
2020-10-06 11:22:06 +13:00
|
|
|
endif()
|
2021-10-21 11:05:30 +13:00
|
|
|
endif()
|
2021-07-27 02:29:05 +12:00
|
|
|
|
2021-10-21 11:05:30 +13:00
|
|
|
if(ZINT_NOOPT)
|
2020-10-06 11:22:06 +13:00
|
|
|
check_cxx_compiler_flag("-O0" CXX_COMPILER_FLAG_O0)
|
|
|
|
if(CXX_COMPILER_FLAG_O0)
|
2019-09-02 07:23:15 +12:00
|
|
|
add_compile_options("-O0")
|
2020-10-06 11:22:06 +13:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-07-13 04:06:49 +12:00
|
|
|
if(ZINT_SANITIZE)
|
2021-07-20 02:58:44 +12:00
|
|
|
if(MSVC)
|
|
|
|
if(MSVC_VERSION GREATER_EQUAL 1920)
|
|
|
|
add_compile_options(-fsanitize=address)
|
|
|
|
message(STATUS "ZINT_SANITIZE: setting -fsanitize=address for MSVC 2019")
|
|
|
|
else()
|
|
|
|
message(STATUS "ZINT_SANITIZE: ignoring for MSVC < 2019")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(SANITIZERS address undefined)
|
|
|
|
foreach(sanitizer IN ITEMS ${SANITIZERS})
|
2021-07-27 02:29:05 +12:00
|
|
|
set(CMAKE_REQUIRED_LIBRARIES -fsanitize=${sanitizer})
|
|
|
|
check_cxx_compiler_flag(-fsanitize=${sanitizer} CXX_COMPILER_FLAG_FSANITIZE_${sanitizer})
|
|
|
|
if(CXX_COMPILER_FLAG_FSANITIZE_${sanitizer})
|
|
|
|
add_compile_options(-fsanitize=${sanitizer})
|
|
|
|
link_libraries(-fsanitize=${sanitizer})
|
2021-07-20 02:58:44 +12:00
|
|
|
endif()
|
2021-07-27 02:29:05 +12:00
|
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
2021-07-20 02:58:44 +12:00
|
|
|
endforeach()
|
2021-07-27 02:29:05 +12:00
|
|
|
|
2021-07-20 02:58:44 +12:00
|
|
|
if(NOT ZINT_DEBUG AND CMAKE_CXX_COMPILER_ID MATCHES "GNU")
|
|
|
|
# Gives warning on MainWindow::setupUI() and retries (& takes forever) if var-tracking-assignments enabled
|
|
|
|
add_compile_options(-fno-var-tracking-assignments)
|
2021-06-19 01:27:59 +12:00
|
|
|
endif()
|
2021-06-27 22:47:55 +12:00
|
|
|
endif()
|
2020-10-06 11:22:06 +13:00
|
|
|
endif()
|
|
|
|
|
2021-10-21 11:05:30 +13:00
|
|
|
if(ZINT_TEST)
|
|
|
|
enable_testing()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(ZINT_COVERAGE)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES -fprofile-arcs)
|
|
|
|
check_cxx_compiler_flag(--coverage CXX_COMPILER_FLAG_COVERAGE)
|
|
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
if(CXX_COMPILER_FLAG_COVERAGE)
|
|
|
|
add_compile_options(--coverage)
|
|
|
|
link_libraries(-fprofile-arcs)
|
|
|
|
|
|
|
|
check_cxx_compiler_flag(-O0 CXX_COMPILER_FLAG_O0)
|
|
|
|
if(CXX_COMPILER_FLAG_O0)
|
|
|
|
add_compile_options(-O0)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
if(APPLE)
|
|
|
|
if(UNIVERSAL) # TODO: make universal binary
|
|
|
|
if(NOT ZINT_HAS_BEEN_RUN_BEFORE)
|
|
|
|
if(EXISTS /Developer/SDKs/MacOSX10.5.sdk OR EXISTS /SDKs/MacOSX10.5.sdk)
|
|
|
|
set(CMAKE_OSX_ARCHITECTURES "ppc;i386;ppc64;x86_64" CACHE STRING "Build architectures for OSX" FORCE)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden -Wl -single_module " CACHE STRING
|
|
|
|
"Flags used by the compiler during all build types." FORCE)
|
|
|
|
elseif(EXISTS /Developer/SDKs/MacOSX10.4u.sdk OR EXISTS /SDKs/MacOSX10.4u.sdk)
|
|
|
|
set(CMAKE_OSX_ARCHITECTURES "ppc;i386" CACHE STRING "Build architectures for OSX" FORCE)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility-inlines-hidden -Wl -single_module " CACHE STRING
|
|
|
|
"Flags used by the compiler during all build types." FORCE)
|
|
|
|
endif()
|
2010-02-28 16:44:54 +13:00
|
|
|
message("Build architectures for OSX:${CMAKE_OSX_ARCHITECTURES}")
|
2021-06-10 22:15:39 +12:00
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(CMAKE_OSX_SYSROOT "/")
|
|
|
|
endif()
|
|
|
|
endif()
|
2009-02-06 21:44:09 +13:00
|
|
|
|
2021-03-30 23:00:24 +13:00
|
|
|
check_function_exists(getopt HAVE_GETOPT)
|
|
|
|
if(NOT HAVE_GETOPT)
|
|
|
|
add_subdirectory(getopt)
|
2021-06-10 22:15:39 +12:00
|
|
|
endif()
|
2021-03-30 23:00:24 +13:00
|
|
|
|
2008-09-19 02:44:52 +12:00
|
|
|
add_subdirectory(backend)
|
|
|
|
add_subdirectory(frontend)
|
|
|
|
|
2021-03-30 03:35:57 +13:00
|
|
|
if(NOT ZINT_USE_QT)
|
|
|
|
message(STATUS "Qt support was disabled for this build")
|
|
|
|
elseif($ENV{CMAKE_PREFIX_PATH} MATCHES "6[.][0-9][.][0-9]")
|
2020-10-27 01:21:43 +13:00
|
|
|
set(USE_QT6 TRUE)
|
|
|
|
message(STATUS "Using Qt6")
|
|
|
|
cmake_policy(SET CMP0012 NEW) # Recognize constants in if()
|
|
|
|
cmake_policy(SET CMP0072 NEW) # Choose OpenGL over legacy GL
|
|
|
|
find_package(Qt6Widgets)
|
|
|
|
find_package(Qt6Gui)
|
|
|
|
find_package(Qt6UiTools)
|
2021-03-12 00:41:13 +13:00
|
|
|
find_package(Qt6Xml)
|
2020-10-27 01:21:43 +13:00
|
|
|
|
2021-03-12 00:41:13 +13:00
|
|
|
if(Qt6Widgets_FOUND AND Qt6Gui_FOUND AND Qt6UiTools_FOUND AND Qt6Xml_FOUND)
|
2021-07-08 23:08:59 +12:00
|
|
|
message(STATUS "Qt version: " ${Qt6Core_VERSION_MAJOR}.${Qt6Core_VERSION_MINOR}.${Qt6Core_VERSION_PATCH})
|
2021-06-25 05:31:08 +12:00
|
|
|
add_subdirectory(backend_qt)
|
2020-10-27 01:21:43 +13:00
|
|
|
add_subdirectory(frontend_qt)
|
|
|
|
else()
|
|
|
|
message(STATUS "Could NOT find Qt6")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
message(STATUS "Using Qt5")
|
|
|
|
find_package(Qt5Widgets)
|
|
|
|
find_package(Qt5Gui)
|
|
|
|
find_package(Qt5UiTools)
|
2021-03-12 00:41:13 +13:00
|
|
|
find_package(Qt5Xml)
|
2020-10-27 01:21:43 +13:00
|
|
|
|
2021-03-12 00:41:13 +13:00
|
|
|
if(Qt5Widgets_FOUND AND Qt5Gui_FOUND AND Qt5UiTools_FOUND AND Qt5Xml_FOUND)
|
2021-07-07 03:35:04 +12:00
|
|
|
message(STATUS "Qt version: " ${Qt5Core_VERSION_STRING})
|
|
|
|
# Old Qt does not provide QT_VERSION_MAJOR
|
|
|
|
if (NOT QT_VERSION_MAJOR)
|
|
|
|
string(SUBSTRING ${Qt5Core_VERSION_STRING} 0 1 QT_VERSION_MAJOR)
|
|
|
|
endif()
|
2021-06-25 05:31:08 +12:00
|
|
|
add_subdirectory(backend_qt)
|
2020-10-27 01:21:43 +13:00
|
|
|
add_subdirectory(frontend_qt)
|
|
|
|
else()
|
|
|
|
message(STATUS "Could NOT find Qt5")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
configure_file(
|
2008-09-19 05:07:17 +12:00
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
|
2020-10-27 01:21:43 +13:00
|
|
|
add_custom_target(uninstall
|
2008-09-19 05:07:17 +12:00
|
|
|
"${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
|
|
|
|
|
2021-06-10 22:15:39 +12:00
|
|
|
# staniek: don't install
|
2021-03-12 00:41:13 +13:00
|
|
|
if(DATA_INSTALL_DIR)
|
2015-09-15 07:47:07 +12:00
|
|
|
set(CMAKE_MODULES_INSTALL_PATH ${DATA_INSTALL_DIR}/cmake/modules)
|
2021-03-12 00:41:13 +13:00
|
|
|
else()
|
2015-09-15 07:47:07 +12:00
|
|
|
set(CMAKE_MODULES_INSTALL_PATH ${CMAKE_ROOT}/Modules)
|
2021-03-12 00:41:13 +13:00
|
|
|
endif()
|
2015-09-15 07:47:07 +12:00
|
|
|
|
|
|
|
install(FILES cmake/modules/FindZint.cmake DESTINATION ${CMAKE_MODULES_INSTALL_PATH} COMPONENT Devel)
|
2009-05-20 20:32:33 +12:00
|
|
|
|
|
|
|
# This needs to be run very last so other parts of the scripts can take
|
|
|
|
# advantage of this.
|
2021-03-12 00:41:13 +13:00
|
|
|
if(NOT ZINT_HAS_BEEN_RUN_BEFORE)
|
|
|
|
set(ZINT_HAS_BEEN_RUN_BEFORE 1 CACHE INTERNAL
|
|
|
|
"Flag to track whether this is the first time running CMake or if CMake has been configured before")
|
|
|
|
endif()
|