aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-10-25 12:47:39 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-10-25 12:47:39 +0200
commit1f85a65078815b56bbb5581675b4f6e3253d8d9f (patch)
treeec48e9f100e8550442f27cdd819512e829789b7e /lib
parentUse vcs_tag to get version information (diff)
downloadsmolbote-1f85a65078815b56bbb5581675b4f6e3253d8d9f.tar.xz
Remove CMakeLists
Diffstat (limited to 'lib')
-rw-r--r--lib/about/CMakeLists.txt20
-rw-r--r--lib/addressbar/CMakeLists.txt19
-rw-r--r--lib/bookmarks/CMakeLists.txt28
-rw-r--r--lib/configuration/CMakeLists.txt24
-rw-r--r--lib/configuration/defaults.h.in14
-rw-r--r--lib/downloads/CMakeLists.txt19
-rw-r--r--lib/urlfilter/CMakeLists.txt22
-rw-r--r--lib/web/CMakeLists.txt18
8 files changed, 0 insertions, 164 deletions
diff --git a/lib/about/CMakeLists.txt b/lib/about/CMakeLists.txt
deleted file mode 100644
index be506fe..0000000
--- a/lib/about/CMakeLists.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-set(CMAKE_AUTOUIC ON)
-set(CMAKE_AUTORCC ON)
-
-add_library(about
- aboutdialog.cpp
- aboutdialog.h
- aboutdialog.ui
-)
-
-target_include_directories(about
- PRIVATE ${Boost_INCLUDE_DIRS}
- PRIVATE ${CMAKE_BINARY_DIR}/src
-)
-
-target_link_libraries(about Qt5::Widgets)
diff --git a/lib/addressbar/CMakeLists.txt b/lib/addressbar/CMakeLists.txt
deleted file mode 100644
index 3a1ab2d..0000000
--- a/lib/addressbar/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-set(CMAKE_AUTOUIC ON)
-set(CMAKE_AUTORCC ON)
-
-add_library(addressbar
- addressbar.cpp
- addressbar.h
- addressbar.ui
- completer.cpp
- completer.h
- urllineedit.cpp
- urllineedit.h
-)
-
-target_link_libraries(addressbar Qt5::Widgets)
diff --git a/lib/bookmarks/CMakeLists.txt b/lib/bookmarks/CMakeLists.txt
deleted file mode 100644
index ebbb035..0000000
--- a/lib/bookmarks/CMakeLists.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-set(CMAKE_AUTOUIC ON)
-set(CMAKE_AUTORCC ON)
-
-add_library(bookmarks
- bookmarksform.ui
- bookmarkswidget.cpp
- bookmarkswidget.h
- # xbel
- xbel.cpp
- xbel.h
-
- # bookmark item/model/view
- model/bookmarkitem.cpp
- model/bookmarkitem.h
- model/bookmarkmodel.cpp
- model/bookmarkmodel.h
-
- forms/editbookmarkdialog.cpp
- forms/editbookmarkdialog.h
- forms/editbookmarkdialog.ui
-)
-
-target_link_libraries(bookmarks Qt5::Widgets)
diff --git a/lib/configuration/CMakeLists.txt b/lib/configuration/CMakeLists.txt
deleted file mode 100644
index d5a46ae..0000000
--- a/lib/configuration/CMakeLists.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-#set(CMAKE_AUTOUIC ON)
-#set(CMAKE_AUTORCC ON)
-
-add_library(configuration
- configuration.cpp
- configuration.h
-)
-
-add_dependencies(configuration config_header)
-
-target_include_directories(configuration
- PRIVATE ${Boost_INCLUDE_DIRS}
- PRIVATE ${PROJECT_BINARY_DIR}/include
-)
-
-target_link_libraries(configuration
- Qt5::Core Qt5::Widgets
- ${Boost_LIBRARIES}
-)
diff --git a/lib/configuration/defaults.h.in b/lib/configuration/defaults.h.in
deleted file mode 100644
index c64cf2f..0000000
--- a/lib/configuration/defaults.h.in
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef SMOLBOTE_DEFAULTS
-#define SMOLBOTE_DEFAULTS
-
-#define Path_Config "@CONFIG_PATH_CONFIG@"
-#define Path_Crashdump "@CONFIG_PATH_CRASHDUMP@"
-
-#define Path_Filter "@CONFIG_PATH_FILTER@"
-#define Path_Plugins "@CONFIG_PATH_PLUGINS@"
-#define Path_Profiles "@CONFIG_PATH_PROFILES@"
-
-#define Path_Bookmarks "@CONFIG_PATH_BOOKMARKS@"
-#define Path_Downloads "@CONFIG_PATH_DOWNLOADS@"
-
-#endif // SMOLBOTE_DEFAULTS
diff --git a/lib/downloads/CMakeLists.txt b/lib/downloads/CMakeLists.txt
deleted file mode 100644
index ad1a3fe..0000000
--- a/lib/downloads/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-set(CMAKE_AUTOUIC ON)
-set(CMAKE_AUTORCC ON)
-
-add_library(downloads
- downloadsform.ui
- downloadswidget.cpp
- downloadswidget.h
- widgets/downloaditemform.ui
- widgets/downloaditemwidget.cpp
- widgets/downloaditemwidget.h
- widgets/elidedlabel.cpp
- widgets/elidedlabel.h)
-
-target_link_libraries(downloads Qt5::Widgets Qt5::WebEngineWidgets) \ No newline at end of file
diff --git a/lib/urlfilter/CMakeLists.txt b/lib/urlfilter/CMakeLists.txt
deleted file mode 100644
index 20466d3..0000000
--- a/lib/urlfilter/CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-
-add_library(urlfilter
- # filter tree
- filtertree.cpp
- filtertree.h
- filterleaf.cpp
- filterleaf.h
- domain.cpp
- domain.h
-
- formats/adblockrule.cpp
- formats/adblockrule.h
- formats/hostlistrule.cpp
- formats/hostlistrule.h
-)
-
-target_link_libraries(urlfilter Qt5::WebEngineWidgets)
diff --git a/lib/web/CMakeLists.txt b/lib/web/CMakeLists.txt
deleted file mode 100644
index 12b4080..0000000
--- a/lib/web/CMakeLists.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-# Find includes in corresponding build directories
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-
-# Instruct CMake to run moc automatically when needed.
-set(CMAKE_AUTOMOC ON)
-
-add_library(web
- profilemanager.cpp
- profilemanager.h
- webprofile.cpp
- webprofile.h
-)
-
-target_include_directories(web
- PRIVATE ${PROJECT_SOURCE_DIR}/include
-)
-
-target_link_libraries(web Qt5::WebEngineWidgets)