blob: c79a1bf1bdf1f493a962905df5d4e284e5c9091b [file] [log] [blame]
cc_test(
name = "using_headers_test",
srcs = ["using_headers.cc"],
copts = select({
"@platforms//os:windows": ["/std:c++17"],
"//conditions:default": ["-std=c++17"],
}),
target_compatible_with = select({
# Windows does not ship headers in the release artifact so this won't work yet.
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = ["@rules_nodejs//nodejs/headers:current_node_cc_headers"],
)