forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
66 lines (62 loc) · 1.46 KB
/
settings.gradle
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
def os = org.gradle.internal.os.OperatingSystem.current()
rootProject.name = 'Poco'
include ':CppUnit'
include ':Encodings'
include ':Foundation'
include ':XML'
include ':JSON'
include ':Util'
include ':Net'
//include ':Crypto'
//include ':NetSSL_OpenSSL'
if (os.windows) {
include ':NetSSL_Win'
}
include ':SQL'
// SQL not ready yet
//include ':SQL:ODBC'
//include ':SQL:SQLite'
//include ':SQL:MySQL'
include ':Zip'
include ':PageCompiler'
include ':PageCompiler:File2Page'
include ':PDF'
include ':CppParser'
include ':MongoDB'
include ':Redis'
include ':PocoDoc'
include ':Encodings:testsuite'
include ':Foundation:testsuite'
include ':XML:testsuite'
include ':JSON:testsuite'
include ':Util:testsuite'
include ':Net:testsuite'
//include ':Crypto:testsuite'
//include ':NetSSL_OpenSSL:testsuite'
if (os.windows) {
include ':NetSSL_Win:testsuite'
}
//include ':SQL:testsuite'
//include ':SQL:ODBC:testsuite'
//include ':SQL:SQLite:testsuite'
//include ':SQL:MySQL:testsuite'
include ':MongoDB:testsuite'
include ':Redis:testsuite'
include ':CppParser:testsuite'
include ':Zip:testsuite'
include ':Encodings:samples'
include ':Foundation:samples'
//include ':SQL:samples'
//include ':NetSSL_OpenSSL:samples'
if (os.windows) {
include ':NetSSL_Win:samples'
}
include ':JSON:samples'
include ':MongoDB:samples'
include ':Net:samples'
include ':PageCompiler:samples'
include ':PDF:samples'
include ':Util:samples'
include ':XML:samples'
include ':SevenZip:samples'
include ':Zip:samples'