| OLD | NEW |
| 1 { | 1 { |
| 2 "protocol": { | 2 "protocol": { |
| 3 "path": "protocol/sample_protocol.json", | 3 "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 }, |
| 7 | 7 |
| 8 "import": { | 8 "import": { |
| 9 "path": "../relative/path/imported_protocol.json", | 9 "path": "../relative/path/imported_protocol.json", |
| 10 "package": "include/imported/files/like/this" | 10 "package": "include/imported/files/like/this" |
| 11 }, | 11 }, |
| 12 | 12 |
| 13 "export": { | 13 "export": { |
| 14 "package": "include/exported/files/like/this", | 14 "package": "include/exported/files/like/this", |
| 15 "output": "place/exported/files/here" | 15 "output": "place/exported/files/here" |
| 16 }, | 16 }, |
| 17 | 17 |
| 18 "string": { | 18 "string": { |
| 19 "class_name": "String16" | 19 "class_name": "String16" |
| 20 }, | 20 }, |
| 21 | 21 |
| 22 "export_macro": "PLATFORM_EXPORT" | 22 "lib": { |
| 23 "output": "place/generated/lib/files/here", |
| 24 "string16_impl_header_path": "sting16/implementation.h", |
| 25 "platform_impl_header_path": "platform/implementation.h" |
| 26 }, |
| 27 |
| 28 "lib_package": "include/lib/files/like/this", |
| 29 |
| 30 "class_export": { |
| 31 "macro": "LIB_EXPORT", |
| 32 "header_path": "lib/export.h" |
| 33 } |
| 23 } | 34 } |
| OLD | NEW |