]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/CMakeLists.txt
Partial bookmark implementation. https://redmine.stoutner.com/issues/968
[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/AddBookmarkDialog.ui
39     uis/AddOrEditCookieDialog.ui
40     uis/AddTabWidget.ui
41     uis/BookmarksDialog.ui
42     uis/CookiesDialog.ui
43     uis/DomainSettingsDialog.ui
44     uis/DurableCookiesDialog.ui
45     uis/SaveDialog.ui
46     uis/SettingsGeneral.ui
47     uis/SettingsPrivacy.ui
48     uis/SettingsSpellCheck.ui
49     uis/TabWidget.ui
50 )
51
52 # Link the following libraries.
53 target_link_libraries(privacybrowser
54     Qt5::Core
55     Qt5::Gui
56     Qt5::Sql
57     Qt5::PrintSupport
58     Qt5::Widgets
59     Qt5::WebEngineCore
60     Qt5::WebEngineWidgets
61     KF5::Completion
62     KF5::ConfigWidgets
63     KF5::CoreAddons
64     KF5::Crash
65     KF5::DBusAddons
66     KF5::DocTools
67     KF5::I18n
68     KF5::Notifications
69     KF5::KIOCore
70     KF5::KIOWidgets
71     KF5::XmlGui
72 )
73
74 # Add the subdirectories.
75 add_subdirectory(databases)
76 add_subdirectory(delegates)
77 add_subdirectory(dialogs)
78 add_subdirectory(filters)
79 add_subdirectory(helpers)
80 add_subdirectory(interceptors)
81 add_subdirectory(ui.rcs)
82 add_subdirectory(widgets)
83 add_subdirectory(windows)
84
85 # Install Privacy Browser using the default KDE arguments.
86 install(TARGETS privacybrowser ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
87
88 # Install Privacy Browser according to the instructions in the desktop file, specifying the permissions.
89 install(PROGRAMS com.stoutner.privacybrowser.desktop DESTINATION ${KDE_INSTALL_APPDIR} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
90
91 # Install the metadata file.
92 install(FILES com.stoutner.privacybrowser.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR})
93
94 # Install the notifyrc file.
95 install(FILES privacybrowser.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})
96
97 # Install the standard icons.
98 ecm_install_icons(ICONS icons/sc-apps-privacybrowser.svg DESTINATION ${KDE_INSTALL_ICONDIR})
99 ecm_install_icons(ICONS icons/16-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
100 ecm_install_icons(ICONS icons/22-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
101 ecm_install_icons(ICONS icons/24-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
102 ecm_install_icons(ICONS icons/32-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
103 ecm_install_icons(ICONS icons/48-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
104 ecm_install_icons(ICONS icons/64-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
105 ecm_install_icons(ICONS icons/128-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
106 ecm_install_icons(ICONS icons/256-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
107 ecm_install_icons(ICONS icons/512-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
108 ecm_install_icons(ICONS icons/1024-apps-privacybrowser.png DESTINATION ${KDE_INSTALL_ICONDIR})
109
110 # Install the symbolic icon (used by Gnome).
111 install(FILES icons/privacybrowser-symbolic.svg DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/symbolic/apps/)