1 # Copyright 2022-2024 Soren Stoutner <soren@stoutner.com>.
3 # This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
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.
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.
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/>.
18 # Create the executable and add the resources.
19 add_executable(privacybrowser resources.qrc)
21 # List the sources to include in the executable.
22 target_sources(privacybrowser PRIVATE
26 # Add the Qt logging category. This will create the `debug.h` header file.
27 ecm_qt_declare_logging_category(privacybrowser
29 IDENTIFIER PRIVACYBROWSER
30 CATEGORY_NAME "privacybrowser"
33 # Include the KConfig controller file.
34 kconfig_add_kcfg_files(privacybrowser settings/Settings.kcfgc)
36 # Use KDE Frameworks to handle internationalization of the following UI files.
37 ki18n_wrap_ui(privacybrowser
38 uis/AddBookmarkDialog.ui
39 uis/AddFolderDialog.ui
40 uis/AddOrEditCookieDialog.ui
42 uis/BookmarksDialog.ui
44 uis/DomainSettingsDialog.ui
45 uis/DurableCookiesDialog.ui
46 uis/EditBookmarkDialog.ui
47 uis/EditFolderDialog.ui
48 uis/HttpAuthenticationDialog.ui
50 uis/SettingsGeneral.ui
51 uis/SettingsPrivacy.ui
52 uis/SettingsSpellCheck.ui
56 # Link the following libraries.
57 target_link_libraries(privacybrowser
78 # Add the subdirectories.
79 add_subdirectory(databases)
80 add_subdirectory(delegates)
81 add_subdirectory(dialogs)
82 add_subdirectory(filters)
83 add_subdirectory(helpers)
84 add_subdirectory(interceptors)
85 add_subdirectory(ui.rcs)
86 add_subdirectory(widgets)
87 add_subdirectory(windows)
89 # Install Privacy Browser using the default KDE arguments.
90 install(TARGETS privacybrowser ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
92 # Install Privacy Browser according to the instructions in the desktop file, specifying the permissions.
93 install(PROGRAMS com.stoutner.privacybrowser.desktop DESTINATION ${KDE_INSTALL_APPDIR} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
95 # Install the metadata file.
96 install(FILES com.stoutner.privacybrowser.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
98 # Install the notifyrc file.
99 install(FILES privacybrowser.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
101 # Install the standard icons.
102 ecm_install_icons(ICONS icons/sc-apps-privacybrowser.svg DESTINATION ${KDE_INSTALL_ICONDIR})
103 ecm_install_icons(ICONS icons/16-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
104 ecm_install_icons(ICONS icons/22-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
105 ecm_install_icons(ICONS icons/24-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
106 ecm_install_icons(ICONS icons/32-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
107 ecm_install_icons(ICONS icons/48-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
108 ecm_install_icons(ICONS icons/64-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
109 ecm_install_icons(ICONS icons/128-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
110 ecm_install_icons(ICONS icons/256-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
111 ecm_install_icons(ICONS icons/512-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
112 ecm_install_icons(ICONS icons/1024-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
114 # Install the symbolic icon (used by Gnome).
115 install(FILES icons/privacybrowser-symbolic.svg DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/symbolic/apps/)