blob: e4df779f81b9ae2d10241197c0d72877184eeab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
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",
]
}
}
|