2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-29 12:33:51 +00:00
rules_foreign_cc/examples/cmake_working_dir/BUILD.bazel

26 lines
509 B
Python
Raw Normal View History

load("@rules_cc//cc:defs.bzl", "cc_test")
load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake")
filegroup(
name = "sources",
srcs = glob(["source_root/**"]),
)
cmake(
name = "liba",
lib_source = ":sources",
# This demonstrates the usage of the working directory:
# the directory where the "main" CMakeLists.txt file resides.
working_directory = "cmake_dir",
)
cc_test(
name = "test_lib",
srcs = [
"test_liba.cpp",
],
deps = [
":liba",
],
)