X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2FCMakeLists.txt;h=ea4fecb7f4d06c0c4c9e9662061853898b913342;hp=83718228956d13b1c920a0c0fd69ba3845ffe3a5;hb=8933c941521c591a962034ecf3486c9143bf1f80;hpb=455108aa18c90514c0dad3c12dfea98180dfb471 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8371822..ea4fecb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -21,7 +21,6 @@ add_executable(privacy-browser resources.qrc) # List the sources to include in the executable. target_sources(privacy-browser PRIVATE main.cpp - MouseEventFilter.cpp ) # Add the Qt logging category. This will create the `debug.h` header file. @@ -37,6 +36,8 @@ kconfig_add_kcfg_files(privacy-browser settings/Settings.kcfgc) # Use KDE Frameworks to handle internationalization of the following UI files. ki18n_wrap_ui(privacy-browser ui/BrowserView.ui + ui/CookiesDialog.ui + ui/CookieWidget.ui ui/DomainSettingsDialog.ui ui/SettingsGeneral.ui ui/SettingsPrivacy.ui @@ -62,6 +63,7 @@ target_link_libraries(privacy-browser # Add the subdirectories. add_subdirectory(dialogs) +add_subdirectory(filters) add_subdirectory(helpers) add_subdirectory(interceptors) add_subdirectory(ui.rc)