blob: e5df946032d29c7fc03a2207d129a0aa25de46ef [file] [log] [blame]
Leon Scroggins III37adfc02017-01-20 16:04:33 -05001cc_library_static {
Leon Scroggins III37adfc02017-01-20 16:04:33 -05002 name: "libjsoncpp",
Steven Morelandf7345182017-06-29 15:21:36 -07003 vendor_available: true,
Leon Scroggins III37adfc02017-01-20 16:04:33 -05004 host_supported: true,
5
6 srcs: [
7 "src/lib_json/json_reader.cpp",
8 "src/lib_json/json_value.cpp",
9 "src/lib_json/json_writer.cpp",
10 ],
11
12 local_include_dirs: [
13 "src/lib_json",
14 ],
15
16 export_include_dirs: ["include"],
17
Chih-Hung Hsieh5b9e4772017-09-28 12:36:04 -070018 cflags: [
19 "-DJSON_USE_EXCEPTION=0",
20 "-Wall",
21 "-Werror",
22 ],
John Muir19f1bfc2017-10-15 22:26:53 -070023
24 target: {
25 windows: {
26 enabled: true,
27 },
28 },
Leon Scroggins III37adfc02017-01-20 16:04:33 -050029}