mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-30 16:42:07 +00:00
14 lines
396 B
Python
14 lines
396 B
Python
|
"""Public entry point to all Foreign CC rules and supported APIs."""
|
||
|
|
||
|
load(":boost_build.bzl", _boost_build = "boost_build")
|
||
|
load(":cmake.bzl", _cmake = "cmake")
|
||
|
load(":configure.bzl", _configure_make = "configure_make")
|
||
|
load(":make.bzl", _make = "make")
|
||
|
load(":ninja.bzl", _ninja = "ninja")
|
||
|
|
||
|
boost_build = _boost_build
|
||
|
cmake = _cmake
|
||
|
configure_make = _configure_make
|
||
|
make = _make
|
||
|
ninja = _ninja
|