mirror of
https://github.com/Murmele/Gittyup.git
synced 2024-11-03 21:24:30 +03:00
c098ef40cf
CMake minimum Qt version set to 5.12 Added QT_VERSION_CHECK(5, 15, 0) to ShowTools.cpp and DoubleTreeWidget.cpp
83 lines
2.0 KiB
CMake
83 lines
2.0 KiB
CMake
cmake_minimum_required(VERSION 3.6.2)
|
|
project(Gittyup)
|
|
|
|
# Set name and version.
|
|
set(GITTYUP_NAME "Gittyup")
|
|
set(GITTYUP_VERSION_MAJOR 1)
|
|
set(GITTYUP_VERSION_MINOR 0)
|
|
set(GITTYUP_VERSION_PATCH 0)
|
|
set(GITTYUP_VERSION
|
|
"${GITTYUP_VERSION_MAJOR}.${GITTYUP_VERSION_MINOR}.${GITTYUP_VERSION_PATCH}"
|
|
)
|
|
|
|
# Generate build date.
|
|
string(TIMESTAMP GITTYUP_BUILD_DATE)
|
|
|
|
# Lookup git revision.
|
|
find_package(Git)
|
|
if(GIT_FOUND)
|
|
execute_process(
|
|
COMMAND ${GIT_EXECUTABLE} --git-dir=${CMAKE_SOURCE_DIR}/.git show -s --format=%h HEAD
|
|
OUTPUT_VARIABLE GITTYUP_BUILD_REVISION
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
else()
|
|
set(GITTYUP_BUILD_REVISION "unknown")
|
|
endif()
|
|
|
|
# Explicitly disable shared libraries.
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
option(FLATPAK "Building for flatpak" OFF)
|
|
|
|
# Require C++17.
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
set(CMAKE_EXE_LINKER_FLAGS -ldl)
|
|
endif()
|
|
|
|
# Find Qt modules.
|
|
set(QT_MODULES
|
|
Concurrent
|
|
Core
|
|
Gui
|
|
Network
|
|
PrintSupport
|
|
Widgets
|
|
Test
|
|
)
|
|
|
|
if(APPLE)
|
|
set(QT_MODULES ${QT_MODULES} DBus)
|
|
endif()
|
|
|
|
find_package(Qt5 5.12 COMPONENTS ${QT_MODULES} LinguistTools REQUIRED)
|
|
if (FLATPAK)
|
|
find_package(Qt5 5.15 COMPONENTS XcbQpa REQUIRED)
|
|
endif()
|
|
|
|
set(QT_TRANSLATIONS_DIR "${Qt5_DIR}/../../../translations")
|
|
set(QT_TRANSLATIONS_DIR "/usr/share/qt/translations")
|
|
|
|
if(APPLE)
|
|
foreach(QT_MODULE ${QT_MODULES})
|
|
# FIXME: Force debug build to link against release libraries
|
|
# inside of frameworks on macOS. The Qt debug libraries are
|
|
# broken because their link dependencies are to the release
|
|
# libraries (e.g. QtGui_debug depends on QtCore). This causes
|
|
# multiple symbol definition errors at application load time.
|
|
get_target_property(LOCATION Qt5::${QT_MODULE} LOCATION)
|
|
set_target_properties(Qt5::${QT_MODULE} PROPERTIES
|
|
IMPORTED_LOCATION_DEBUG ${LOCATION}
|
|
)
|
|
endforeach()
|
|
endif()
|
|
|
|
add_subdirectory(dep)
|
|
add_subdirectory(src)
|
|
add_subdirectory(l10n)
|
|
add_subdirectory(test)
|
|
add_subdirectory(pack)
|