- Clean CMake + QML module structure - AGPL-3.0 licensed - Cross-platform ready (Linux, Windows, macOS) - Dark Material theme window working
71 lines
2.8 KiB
CMake
71 lines
2.8 KiB
CMake
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright (C) 2026 Aether Contributors
|
|
#
|
|
# This file is part of Aether.
|
|
#
|
|
# Aether is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU Affero General Public License as published
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Aether 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 Affero General Public
|
|
# License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with Aether. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
cmake_minimum_required(VERSION 3.28)
|
|
|
|
project(Aether
|
|
VERSION 0.1.0
|
|
DESCRIPTION "A beautiful, fast, native Qt 6 client for Stoat"
|
|
HOMEPAGE_URL "https://github.com/aether-client/aether"
|
|
LANGUAGES CXX
|
|
)
|
|
|
|
# ── C++ standard ──────────────────────────────────────────────────────────────
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
# ── Build type default ────────────────────────────────────────────────────────
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
|
|
Debug Release RelWithDebInfo MinSizeRel)
|
|
endif()
|
|
|
|
# ── Qt setup ──────────────────────────────────────────────────────────────────
|
|
find_package(Qt6 6.8 REQUIRED COMPONENTS
|
|
Core
|
|
Gui
|
|
Quick
|
|
QuickControls2
|
|
Multimedia
|
|
Svg
|
|
Network
|
|
)
|
|
|
|
qt_standard_project_setup(REQUIRES 6.8)
|
|
|
|
# ── Subdirectories ────────────────────────────────────────────────────────────
|
|
add_subdirectory(src)
|
|
|
|
# ── Install rules ─────────────────────────────────────────────────────────────
|
|
include(GNUInstallDirs)
|
|
|
|
install(TARGETS aether
|
|
BUNDLE DESTINATION .
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|
|
|
|
qt_generate_deploy_qml_app_script(
|
|
TARGET aether
|
|
OUTPUT_SCRIPT deploy_script
|
|
MACOS_BUNDLE_POST_BUILD
|
|
NO_UNSUPPORTED_PLATFORM_ERROR
|
|
DEPLOY_USER_QML_MODULES_ON_UNSUPPORTED_PLATFORM
|
|
)
|
|
install(SCRIPT ${deploy_script})
|