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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
{
"format":
{
"name": "The TBOOX Package Format"
, "version": "v1.0.1"
, "website": "http://www.tboox.org"
}
, "package":
{
"name": "The Base Library"
}
, "compiler":
{
"mac":
{
"x64":
{
"debug":
{
"libs": "m dl pthread"
, "libpath": "/usr/local/lib"
, "incpath": ""
, "libflags": ""
, "incflags": ""
}
, "release": "$.compiler.mac.x64.debug"
}
, "x86": "$.compiler.mac.x64"
}
, "msvc":
{
"x86":
{
"debug":
{
"libs": "ws2_32"
}
, "release": "$.compiler.msvc.x86.debug"
}
}
, "cygwin":
{
"x86":
{
"debug":
{
"libs": "ws2_32 m dl pthread"
}
, "release": "$.compiler.cygwin.x86.debug"
}
}
, "mingw": "$.compiler.msvc"
, "android":
{
"armv5te":
{
"debug":
{
"libs": "stdc++ log gcc c m dl"
}
, "release": "$.compiler.android.armv5te.debug"
}
, "armv6": "$.compiler.android.armv5te"
, "armv7": "$.compiler.android.armv5te"
}
, "ios":
{
"armv6":
{
"debug":
{
"libs": "stdc++ m dl pthread"
, "libflags": "-framework UIKit"
}
, "release": "$.compiler.ios.armv6.debug"
}
, "armv7": "$.compiler.ios.armv6"
, "armv7s": "$.compiler.ios.armv6"
, "arm64": "$.compiler.ios.armv6"
}
, "linux":
{
"x86":
{
"debug":
{
"libs": "rt m dl pthread"
}
, "release": "$.compiler.linux.x86.debug"
}
, "x64": "$.compiler.linux.x86"
}
}
}
|