2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-28 08:43:26 +00:00
rules_foreign_cc/examples/cmake_with_data/BUILD.bazel
UebelAndre 0e0d9a26f2
Prefixed all output attributes with out_ to make their use clearer (#538)
* Prefixed all output attributes with `out_` to make their use clearer

* Updated examples
2021-03-11 17:14:00 +00:00

65 lines
1.6 KiB
Python

load("@rules_cc//cc:defs.bzl", "cc_test")
load("@rules_foreign_cc//tools/build_defs:cmake.bzl", "cmake")
cmake(
name = "cmake_with_data",
cache_entries = select({
"@bazel_tools//src/conditions:windows": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_CXX_FLAGS": "/MD",
"CMAKE_CXX_FLAGS_DEBUG": "/MD",
},
"//conditions:default": {},
}),
cmake_options = select({
"@bazel_tools//src/conditions:windows": ["-G \"Visual Studio 15 2017\" -A x64"],
"//conditions:default": [],
}),
data = [
"cmake_with_data.txt",
"//cmake_with_data/lib_b",
],
lib_source = "//cmake_with_data/lib_a:srcs",
make_commands = select({
"@bazel_tools//src/conditions:windows": ["MSBuild.exe INSTALL.vcxproj"],
"//conditions:default": [
"make",
"make install",
],
}),
out_static_libs = select({
"@bazel_tools//src/conditions:windows": ["lib_a.lib"],
"//conditions:default": ["lib_a.a"],
}),
)
# Demonstrates that files can be made available at runtime
cc_test(
name = "test_with_data",
srcs = [
"tests/test_cmake_with_data.cpp",
],
deps = [
":cmake_with_data",
],
)
# Demonstrates that target outputs can be made available at runtime
cc_test(
name = "test_with_shared_lib",
srcs = [
"tests/test_cmake_with_shared_lib.cpp",
],
deps = [
":cmake_with_data",
],
)
test_suite(
name = "data_attr_tests",
tests = [
":test_with_data",
":test_with_shared_lib",
],
)