blob: e57946691fb9cbe6618e8ab16def97288ebfee6b [file] [log] [blame]
Brian Silverman82a12b92019-01-19 21:52:10 -08001licenses(["notice"])
2
3cc_library(
4 name = "wpiutil",
5 srcs = glob([
6 "src/main/native/cpp/llvm/*.cpp",
Austin Schuhf6b94632019-02-02 22:11:27 -08007 ]) + [
Brian Silverman82a12b92019-01-19 21:52:10 -08008 "src/main/native/cpp/llvm/Unix/Path.inc",
Austin Schuhf6b94632019-02-02 22:11:27 -08009 "src/main/native/cpp/timestamp.cpp",
10 "src/main/native/cpp/SafeThread.cpp",
11 "src/main/native/cpp/memory.cpp",
12 ],
Brian Silverman82a12b92019-01-19 21:52:10 -080013 hdrs = glob([
14 "src/main/native/include/**",
15 ]),
16 copts = [
17 "-Wno-unused-parameter",
18 ],
19 includes = [
20 "src/main/native/include",
21 ],
22 restricted_to = ["//tools:roborio"],
23 visibility = ["//visibility:public"],
24)