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
|
{
'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux', 'win'],
'SEARCH': [
'../../../../third_party/jsoncpp/overrides/include/json',
'../../../../third_party/jsoncpp/overrides/src/lib_json',
'../../../../third_party/jsoncpp/source/include/json',
'../../../../third_party/jsoncpp/source/src/lib_json',
'../../../../third_party/jsoncpp',
],
'TARGETS': [
{
'NAME' : 'jsoncpp',
'TYPE' : 'lib',
'DEFINES': ['JSON_USE_EXCEPTION=0'],
'SOURCES' : [
'json_reader.cpp',
'json_value.cpp',
'json_writer.cpp',
],
'CXXFLAGS': ['-Wno-strict-aliasing']
}
],
'HEADERS': [
{
'DEST': 'include/json',
'FILES': [
'assertions.h',
'autolink.h',
'config.h',
'features.h',
'forwards.h',
'json.h',
'reader.h',
'value.h',
'writer.h',
],
},
],
'DATA': [
'LICENSE',
'README.chromium',
'json_batchallocator.h',
'json_internalarray.inl',
'json_internalmap.inl',
'json_tool.h',
'json_valueiterator.inl',
],
'DEST': 'src',
'NAME': 'jsoncpp',
}
|