aboutsummaryrefslogtreecommitdiff
path: root/lib/adblock/adblock.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/adblock/adblock.qbs')
-rw-r--r--lib/adblock/adblock.qbs37
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/adblock/adblock.qbs b/lib/adblock/adblock.qbs
deleted file mode 100644
index e4df779..0000000
--- a/lib/adblock/adblock.qbs
+++ /dev/null
@@ -1,37 +0,0 @@
-import qbs 1.0
-
-Project {
- name: "Filter"
-
- StaticLibrary {
- name: "adblock"
-
- Depends { name: "cpp" }
- Depends {
- name: "Qt"
- submodules: ["core"]
- }
-
- files: [
- "filterrule.h",
- "filterrule.cpp",
- ]
- }
-
- CppApplication {
- name: "adblock-test"
-
- Depends {
- name: "Qt"
- submodules: ["core", "test"]
- }
-
- Depends { name: "adblock" }
-
- files: [
- "test/main.cpp",
- "test/filtertest.cpp",
- "test/filtertest.h",
- ]
- }
-}