X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2FCMakeLists.txt;h=83718228956d13b1c920a0c0fd69ba3845ffe3a5;hp=55b3e3f75911dd82616e6361a452f080098d5ba0;hb=455108aa18c90514c0dad3c12dfea98180dfb471;hpb=fe9f5cdee9e6e16eac1858f7f661516c24f71fa5 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 55b3e3f..8371822 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,7 +22,6 @@ add_executable(privacy-browser resources.qrc) target_sources(privacy-browser PRIVATE main.cpp MouseEventFilter.cpp - UrlRequestInterceptor.cpp ) # Add the Qt logging category. This will create the `debug.h` header file. @@ -33,14 +32,14 @@ ecm_qt_declare_logging_category(privacy-browser ) # Include the KConfig controller file. -kconfig_add_kcfg_files(privacy-browser Settings.kcfgc) +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 - BrowserView.ui - DomainSettingsDialog.ui - SettingsGeneral.ui - SettingsPrivacy.ui + ui/BrowserView.ui + ui/DomainSettingsDialog.ui + ui/SettingsGeneral.ui + ui/SettingsPrivacy.ui ) # Link the following libraries. @@ -64,6 +63,7 @@ target_link_libraries(privacy-browser # Add the subdirectories. add_subdirectory(dialogs) add_subdirectory(helpers) +add_subdirectory(interceptors) add_subdirectory(ui.rc) add_subdirectory(views) add_subdirectory(windows)