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.

42 lines
890 B

cc_library(
name = "libnos",
srcs = [
"NuggetClient.cpp",
"debug.cpp",
],
hdrs = [
"include/nos/AppClient.h",
"include/nos/NuggetClient.h",
"include/nos/NuggetClientInterface.h",
"include/nos/debug.h",
],
includes = [
"include",
],
visibility = ["//visibility:public"],
deps = [
"//host/generic:nos_headers",
"//host/generic/libnos_datagram",
"//host/generic/libnos_transport",
],
)
cc_library(
name = "libnos_debuggable",
srcs = [
"NuggetClientDebuggable.cpp",
],
hdrs = [
"include/nos/NuggetClient.h",
"include/nos/NuggetClientDebuggable.h",
],
includes = [
"include",
],
visibility = ["//visibility:public"],
deps = [
"//host/generic:nos_headers",
"//host/generic/libnos",
],
)