Add Bazel support for the v3 branch

This commit is contained in:
Valentin Tolmer 2020-05-25 15:44:57 +02:00 committed by Martin Hořeňovský
parent 1356788ea8
commit d05a8e2e24
3 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View File

@ -28,3 +28,4 @@ Build
cmake-build-*
benchmark-dir
.conan/test_package/build
bazel-*

25
BUILD.bazel Normal file
View File

@ -0,0 +1,25 @@
# Load the cc_library rule.
load("@rules_cc//cc:defs.bzl", "cc_library")
# Static library, without main.
cc_library(
name = "catch2",
hdrs = glob(["src/catch2/**/*.hpp"]),
srcs = glob(["src/catch2/**/*.cpp"],
exclude=[ "src/catch2/internal/catch_main.cpp"]),
visibility = ["//visibility:public"],
copts = ["-std=c++14"],
linkstatic = True,
includes = ["src/"],
)
# Static library, with main.
cc_library(
name = "catch2_main",
srcs = ["src/catch2/internal/catch_main.cpp"],
deps = [":catch2"],
visibility = ["//visibility:public"],
linkstatic = True,
copts = ["-std=c++14"],
includes = ["src/"],
)

0
WORKSPACE Normal file
View File