]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/CMakeLists.txt
Make changes to build on Guix. https://redmine.stoutner.com/issues/1005
[PrivacyBrowserPC.git] / src / 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 # Create the executable and add the resources.
19 add_executable(privacybrowser resources.qrc)
20
21 # List the sources to include in the executable.
22 target_sources(privacybrowser PRIVATE
23     main.cpp
24 )
25
26 # Add the Qt logging category.  This will create the `debug.h` header file.
27 ecm_qt_declare_logging_category(privacybrowser
28     HEADER debug.h
29     IDENTIFIER PRIVACYBROWSER
30     CATEGORY_NAME "privacybrowser"
31 )
32
33 # Include the KConfig controller file.
34 kconfig_add_kcfg_files(privacybrowser settings/Settings.kcfgc)
35
36 # Use KDE Frameworks to handle internationalization of the following UI files.
37 ki18n_wrap_ui(privacybrowser
38     uis/AddOrEditCookieDialog.ui
39     uis/AddTabWidget.ui
40     uis/CookiesDialog.ui
41     uis/DomainSettingsDialog.ui
42     uis/DurableCookiesDialog.ui
43     uis/SaveDialog.ui
44     uis/SettingsGeneral.ui
45     uis/SettingsPrivacy.ui
46     uis/SettingsSpellCheck.ui
47     uis/TabWidget.ui
48 )
49
50 # Link the following libraries.
51 target_link_libraries(privacybrowser
52     Qt5::Core
53     Qt5::Gui
54     Qt5::Sql
55     Qt5::PrintSupport
56     Qt5::Widgets
57     Qt5::WebEngineCore
58     Qt5::WebEngineWidgets
59     KF5::Completion
60     KF5::ConfigWidgets
61     KF5::CoreAddons
62     KF5::Crash
63     KF5::DBusAddons
64     KF5::DocTools
65     KF5::I18n
66     KF5::Notifications
67     KF5::KIOCore
68     KF5::KIOWidgets
69     KF5::XmlGui
70 )
71
72 # Add the subdirectories.
73 add_subdirectory(databases)
74 add_subdirectory(delegates)
75 add_subdirectory(dialogs)
76 add_subdirectory(filters)
77 add_subdirectory(helpers)
78 add_subdirectory(interceptors)
79 add_subdirectory(ui.rcs)
80 add_subdirectory(widgets)
81 add_subdirectory(windows)
82
83 # Install Privacy Browser using the default KDE arguments.
84 install(TARGETS privacybrowser ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
85
86 # Install Privacy Browser according to the instructions in the desktop file, specifying the permissions.
87 install(PROGRAMS com.stoutner.privacybrowser.desktop DESTINATION ${KDE_INSTALL_APPDIR} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
88
89 # Install the metadata file.
90 install(FILES com.stoutner.privacybrowser.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
91
92 # Install the notifyrc file.
93 install(FILES privacybrowser.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
94
95 # Install the standard icons.
96 ecm_install_icons(ICONS icons/sc-apps-privacybrowser.svg DESTINATION ${KDE_INSTALL_ICONDIR})
97 ecm_install_icons(ICONS icons/16-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
98 ecm_install_icons(ICONS icons/22-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
99 ecm_install_icons(ICONS icons/24-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
100 ecm_install_icons(ICONS icons/32-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
101 ecm_install_icons(ICONS icons/48-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
102 ecm_install_icons(ICONS icons/64-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
103 ecm_install_icons(ICONS icons/128-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
104 ecm_install_icons(ICONS icons/256-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
105 ecm_install_icons(ICONS icons/512-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
106 ecm_install_icons(ICONS icons/1024-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
107
108 # Install the symbolic icon (used by Gnome).
109 install(FILES icons/privacybrowser-symbolic.svg DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/symbolic/apps/)