]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/CMakeLists.txt
Add PNG app icons. https://redmine.stoutner.com/issues/992
[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::Widgets
56     Qt5::WebEngineCore
57     Qt5::WebEngineWidgets
58     KF5::Completion
59     KF5::ConfigWidgets
60     KF5::CoreAddons
61     KF5::Crash
62     KF5::DBusAddons
63     KF5::DocTools
64     KF5::I18n
65     KF5::Notifications
66     KF5::KIOCore
67     KF5::KIOWidgets
68     KF5::XmlGui
69 )
70
71 # Add the subdirectories.
72 add_subdirectory(databases)
73 add_subdirectory(delegates)
74 add_subdirectory(dialogs)
75 add_subdirectory(filters)
76 add_subdirectory(helpers)
77 add_subdirectory(interceptors)
78 add_subdirectory(ui.rcs)
79 add_subdirectory(widgets)
80 add_subdirectory(windows)
81
82 # Install Privacy Browser using the default KDE arguments.
83 install(TARGETS privacybrowser ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
84
85 # Install Privacy Browser according to the instructions in the desktop file, specifying the permissions.
86 install(PROGRAMS com.stoutner.privacybrowser.desktop DESTINATION ${KDE_INSTALL_APPDIR} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
87
88 # Install the metadata file.
89 install(FILES com.stoutner.privacybrowser.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
90
91 # Install the notifyrc file.
92 install(FILES privacybrowser.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
93
94 # Install the standard icons.
95 ecm_install_icons(ICONS icons/sc-apps-privacybrowser.svg DESTINATION ${KDE_INSTALL_ICONDIR})
96 ecm_install_icons(ICONS icons/16-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
97 ecm_install_icons(ICONS icons/22-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
98 ecm_install_icons(ICONS icons/24-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
99 ecm_install_icons(ICONS icons/32-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
100 ecm_install_icons(ICONS icons/48-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
101 ecm_install_icons(ICONS icons/64-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
102 ecm_install_icons(ICONS icons/128-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
103 ecm_install_icons(ICONS icons/256-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
104 ecm_install_icons(ICONS icons/512-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
105 ecm_install_icons(ICONS icons/1024-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
106
107 # Install the symbolic icon (used by Gnome).
108 install(FILES icons/privacybrowser-symbolic.svg DESTINATION /usr/share/icons/hicolor/symbolic/apps/)