You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
378 B
20 lines
378 B
cc_library_static { |
|
name: "libjsoncpp", |
|
vendor_available: true, |
|
host_supported: true, |
|
|
|
srcs: [ |
|
"src/lib_json/json_reader.cpp", |
|
"src/lib_json/json_value.cpp", |
|
"src/lib_json/json_writer.cpp", |
|
], |
|
|
|
local_include_dirs: [ |
|
"src/lib_json", |
|
], |
|
|
|
export_include_dirs: ["include"], |
|
|
|
cflags: ["-DJSON_USE_EXCEPTION=0"], |
|
|
|
}
|
|
|