mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-04 08:02:31 +00:00
3547a24075
Also, provide a variable to put into dependencies, empty in case local ninja is installed, or containing the reference to ninja target
26 lines
625 B
Python
26 lines
625 B
Python
load("//tools/build_defs:cmake.bzl", "cmake_external")
|
|
load("@foreign_cc_platform_utils//:tools.bzl", "NINJA_COMMAND", "NINJA_DEP")
|
|
|
|
cmake_external(
|
|
name = "nghttp2",
|
|
cache_entries = {
|
|
"ENABLE_STATIC_LIB": "on",
|
|
"ENABLE_LIB_ONLY": "on",
|
|
},
|
|
cmake_options = ["-GNinja"],
|
|
lib_source = "@nghttp2//:all",
|
|
make_commands = [
|
|
NINJA_COMMAND,
|
|
NINJA_COMMAND + " install",
|
|
],
|
|
static_libraries = ["libnghttp2.a"],
|
|
tools_deps = NINJA_DEP,
|
|
)
|
|
|
|
cc_test(
|
|
name = "test_nghttp2",
|
|
srcs = ["nghttp2-test.cpp"],
|
|
visibility = ["//:__pkg__"],
|
|
deps = [":nghttp2"],
|
|
)
|