OLD | NEW |
1 { | 1 { |
2 "protocol": { | 2 "protocol": { |
3 "path": "protocol/sample_protocol.json", | 3 "path": "./relative/path/protocol/sample_protocol.json", |
4 "package": "include/generated/files/like/this", | 4 "package": "include/generated/files/like/this", |
5 "output": "place/generated/files/here" | 5 "output": "place/generated/files/here", |
6 }, | 6 "namespace": ["sample_project", "protocol"] |
7 | |
8 "imported": { | |
9 "path": "../relative/path/imported_protocol.json", | |
10 "package": "include/imported/files/like/this" | |
11 }, | 7 }, |
12 | 8 |
13 "exported": { | 9 "exported": { |
14 "package": "include/exported/files/like/this", | 10 "package": "include/exported/files/like/this", |
15 "output": "place/exported/files/here" | 11 "output": "place/exported/files/here" |
16 }, | 12 }, |
17 | 13 |
18 "string": { | 14 "imported": { |
19 "class_name": "String16" | 15 "path": "../relative/path/imported_protocol.json", |
| 16 "package": "include/imported/files/like/this", |
| 17 "namespace": ["imported_project", "protocol"] |
20 }, | 18 }, |
21 | 19 |
22 "lib": { | 20 "lib": { |
| 21 "package": "include/lib/files/like/this", |
23 "output": "place/generated/lib/files/here", | 22 "output": "place/generated/lib/files/here", |
24 "string16_header": "sting16/implementation.h", | 23 "string_header": "string/implementation.h", |
25 "platform_header": "platform/implementation.h" | 24 "platform_header": "platform/implementation.h" |
26 }, | 25 }, |
27 | 26 |
28 "lib_package": "include/lib/files/like/this", | |
29 | |
30 "class_export": { | 27 "class_export": { |
31 "macro": "LIB_EXPORT", | 28 "macro": "LIB_EXPORT", |
32 "header": "lib/export.h" | 29 "header": "lib/lib_export.h" |
33 } | 30 } |
34 } | 31 } |
OLD | NEW |