mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-24 13:27:45 +00:00
Giant commit overhauling the interface to use KDE's Kirigami framework, which is based on Qt Quick. The logic is all but rewritten, allowing accounts to be separate from profiles.
74 lines
No EOL
2.2 KiB
CMake
Executable file
74 lines
No EOL
2.2 KiB
CMake
Executable file
cmake_minimum_required(VERSION 3.16)
|
|
project(Astra VERSION 0.5.0 LANGUAGES CXX)
|
|
|
|
# build options used for distributors
|
|
option(BUILD_FLATPAK "Build for Flatpak." OFF)
|
|
|
|
# options for features you may want or need
|
|
option(ENABLE_WATCHDOG "Build support for Watchdog, requires X11." OFF)
|
|
option(ENABLE_STEAM "Build with Steam support, requires supplying the Steam SDK yourself." OFF)
|
|
option(ENABLE_GAMEMODE "Build with Feral GameMode support, requires the daemon to be installed." ON)
|
|
|
|
set(CMAKE_AUTOUIC ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(QT_MIN_VERSION 5.15)
|
|
set(KF5_MIN_VERSION 5.83)
|
|
|
|
find_package(ECM ${KF5_MIN_VERSION} REQUIRED NO_MODULE)
|
|
list(APPEND CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
|
|
|
|
include(KDEInstallDirs)
|
|
include(ECMFindQmlModule)
|
|
include(KDECMakeSettings)
|
|
include(KDECompilerSettings NO_POLICY_SCOPE)
|
|
include(ECMSetupVersion)
|
|
include(ECMGenerateHeaders)
|
|
include(ECMPoQmTools)
|
|
include(KDEGitCommitHooks)
|
|
include(KDEClangFormat)
|
|
|
|
find_package(Qt5 ${QT_MIN_VERSION} NO_MODULE REQUIRED COMPONENTS
|
|
Core
|
|
Widgets
|
|
Network
|
|
QuickControls2)
|
|
find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS Kirigami2 I18n Config CoreAddons)
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
if (ENABLE_WATCHDOG)
|
|
pkg_search_module(TESSERACT REQUIRED tesseract)
|
|
pkg_search_module(LEPTONICA REQUIRED lept)
|
|
endif ()
|
|
|
|
if (ENABLE_GAMEMODE)
|
|
pkg_search_module(GAMEMODE REQUIRED gamemode)
|
|
endif ()
|
|
|
|
if (ENABLE_STEAM)
|
|
add_library(Steamworks IMPORTED SHARED)
|
|
set_target_properties(Steamworks PROPERTIES
|
|
INTERFACE_INCLUDE_DIRECTORIES ${STEAMWORKS_INCLUDE_DIR}
|
|
IMPORTED_LOCATION ${STEAMWORKS_LIBRARIES})
|
|
|
|
if (BUILD_FLATPAK)
|
|
install(IMPORTED_RUNTIME_ARTIFACTS Steamworks)
|
|
endif ()
|
|
endif ()
|
|
|
|
find_package(Qt5Keychain REQUIRED)
|
|
find_package(QuaZip-Qt5 REQUIRED)
|
|
|
|
add_subdirectory(external)
|
|
add_subdirectory(launcher)
|
|
|
|
feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
|
|
|
file(GLOB_RECURSE ALL_CLANG_FORMAT_SOURCE_FILES src/*.cpp src/*.h)
|
|
kde_clang_format(${ALL_CLANG_FORMAT_SOURCE_FILES})
|
|
|
|
kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT) |