File tree Expand file tree Collapse file tree 5 files changed +76
-0
lines changed
Expand file tree Collapse file tree 5 files changed +76
-0
lines changed Original file line number Diff line number Diff line change 1+ load ("@fbcode_macros//build_defs:cpp_library.bzl" , "cpp_library" )
2+
3+ oncall ("scm_client_infra" )
4+
5+ cpp_library (
6+ name = "getopt" ,
7+ srcs = ["GetOpt.cpp" ],
8+ headers = ["GetOpt.h" ],
9+ )
Original file line number Diff line number Diff line change 1+ load ("@fbcode_macros//build_defs:cpp_library.bzl" , "cpp_library" )
2+
3+ oncall ("scm_client_infra" )
4+
5+ cpp_library (
6+ name = "utf" ,
7+ srcs = ["utf.cpp" ],
8+ headers = ["utf.h" ],
9+ )
10+
11+ cpp_library (
12+ name = "jansson" ,
13+ srcs = [
14+ "dump.cpp" ,
15+ "error.cpp" ,
16+ "load.cpp" ,
17+ "strconv.cpp" ,
18+ "value.cpp" ,
19+ ],
20+ headers = [
21+ "jansson.h" ,
22+ "jansson_private.h" ,
23+ ],
24+ deps = [
25+ "fbsource//third-party/fmt:fmt" ,
26+ "//folly:string" ,
27+ ],
28+ exported_deps = [
29+ ":utf" ,
30+ "//watchman:string" ,
31+ ],
32+ )
Original file line number Diff line number Diff line change 1+ load ("@fbcode_macros//build_defs:cpp_library.bzl" , "cpp_library" )
2+
3+ oncall ("scm_client_infra" )
4+
5+ cpp_library (
6+ name = "art" ,
7+ srcs = [],
8+ headers = [
9+ "art.h" ,
10+ "art-inl.h" ,
11+ ],
12+ )
Original file line number Diff line number Diff line change 1+ load ("@fbcode_macros//build_defs:cpp_library.bzl" , "cpp_library" )
2+
3+ oncall ("scm_client_infra" )
4+
5+ cpp_library (
6+ name = "wildmatch" ,
7+ srcs = ["wildmatch.c" ],
8+ headers = ["wildmatch.h" ],
9+ )
Original file line number Diff line number Diff line change 1+ load ("@fbcode_macros//build_defs:cpp_binary.bzl" , "cpp_binary" )
2+
3+ oncall ("scm_client_infra" )
4+
5+ cpp_binary (
6+ name = "susres" ,
7+ srcs = ["susres.cpp" ],
8+ compatible_with = [
9+ "ovr_config//os:windows" ,
10+ ],
11+ deps = [
12+ "fbsource//third-party/fmt:fmt" ,
13+ ],
14+ )
You can’t perform that action at this time.
0 commit comments