]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/CMakeLists.txt
Change the cookie implementation to a QTreeView.
[PrivacyBrowserPC.git] / src / CMakeLists.txt
1 # Copyright © 2022 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(privacy-browser resources.qrc)
20
21 # List the sources to include in the executable.
22 target_sources(privacy-browser 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(privacy-browser
28     HEADER debug.h
29     IDENTIFIER PRIVACYBROWSER
30     CATEGORY_NAME "privacybrowser"
31 )
32
33 # Include the KConfig controller file.
34 kconfig_add_kcfg_files(privacy-browser settings/Settings.kcfgc)
35
36 # Use KDE Frameworks to handle internationalization of the following UI files.
37 ki18n_wrap_ui(privacy-browser
38     ui/AddOrEditCookieDialog.ui
39     ui/BrowserView.ui
40     ui/CookiesDialog.ui
41     ui/DomainSettingsDialog.ui
42     ui/SettingsGeneral.ui
43     ui/SettingsPrivacy.ui
44 )
45
46 # Link the following libraries.
47 target_link_libraries(privacy-browser
48     Qt5::Core
49     Qt5::Gui
50     Qt5::Sql
51     Qt5::Widgets
52     Qt5::WebEngineCore
53     Qt5::WebEngineWidgets
54     KF5::Completion
55     KF5::ConfigWidgets
56     KF5::CoreAddons
57     KF5::Crash
58     KF5::DBusAddons
59     KF5::DocTools
60     KF5::I18n
61     KF5::XmlGui
62 )
63
64 # Add the subdirectories.
65 add_subdirectory(dialogs)
66 add_subdirectory(filters)
67 add_subdirectory(helpers)
68 add_subdirectory(interceptors)
69 add_subdirectory(ui.rc)
70 add_subdirectory(views)
71 add_subdirectory(windows)
72
73 # Install Privacy Browser using the default KDE arguments.
74 install(TARGETS privacy-browser ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
75
76 # Install Privacy Browser according to the instructions in the desktop file, specifying the permissions.
77 install(PROGRAMS com.stoutner.privacybrowser.desktop DESTINATION ${KDE_INSTALL_APPDIR} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
78
79 # Install Privacy Browser's metadata file.
80 install(FILES com.stoutner.privacybrowser.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
81
82 # Install Privacy Browser's icon.
83 ecm_install_icons(ICONS icons/sc-apps-privacy-browser.svg DESTINATION ${KDE_INSTALL_ICONDIR})