mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-29 12:33:51 +00:00
edbfa3bfa9
* Restructured rules to match architecture * Added exports of all symbols in the deprecated location for legacy support * Updated examples
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
|