]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - CMakeLists.txt
Add a default folder icon to the edit folder dialog. https://redmine.stoutner.com...
[PrivacyBrowserPC.git] / CMakeLists.txt
1 # Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
2 #
3 # This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
4 #
5 # Privacy Browser PC is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Privacy Browser PC is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # Set the minimum CMake version.
20 cmake_minimum_required(VERSION 3.16)
21
22 # Name the project.
23 project(privacybrowser)
24
25 # Set the minimum framework versions.
26 set(QT_MIN_VERSION "5.15.0")
27 set(KDE_FRAMEWORKS_MIN_VERSION "5.83.0")
28
29 # Load the Extra CMake Modules that correspond to the KDE Frameworks version.
30 find_package(ECM ${KDE_FRAMEWORKS_MIN_VERSION} REQUIRED NO_MODULE)
31
32 # Set the CMake module path.
33 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
34
35 # Include the KDE modules.
36 include(KDEInstallDirs)
37 include(KDECMakeSettings)
38 include(KDECompilerSettings NO_POLICY_SCOPE)
39
40 # Include the Extra CMake Modules.
41 include(ECMInstallIcons)
42 include(ECMQtDeclareLoggingCategory)
43 include(FeatureSummary)
44
45 # Include the Position Independent Executable checker.  <https://cmake.org/cmake/help/latest/policy/CMP0083.html>
46 include(CheckPIESupported)
47
48 # Check to see if Position Independent Executable is supported in the current linker and environment.
49 check_pie_supported()
50
51 # Add the Position Independent Executable compiler flag if it is supported in the current linker and environment.  <https://cmake.org/cmake/help/latest/variable/CMAKE_POSITION_INDEPENDENT_CODE.html>
52 set(CMAKE_POSITION_INDEPENDENT_CODE TRUE)
53
54 # Load the Qt components.
55 find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
56     Core
57     Gui
58     PrintSupport
59     Sql
60     WebEngineCore
61     WebEngineWidgets
62     Widgets
63 )
64
65 # Load the KDE Frameworks components.
66 find_package(KF5 ${KDE_FRAMEWORKS_MIN_VERSION} REQUIRED COMPONENTS
67     Completion
68     ConfigWidgets
69     CoreAddons
70     Crash
71     DBusAddons
72     DocTools
73     I18n
74     Notifications
75     KIO
76     XmlGui
77 )
78
79 # Add the subdirectories.
80 add_subdirectory(doc)
81 add_subdirectory(src)
82
83 # Install the PO files.  These should be enabled once there are PO translations.
84 #ki18n_install(po)
85 #kdoctools_install(po)
86
87 # Generate a summary.
88 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)