cpptrace/test/BUILD.bazel
WSUFan 88d681d986
Enable Bazel build system support (#153)
This pull request enables Bazel build support for cpptrace. Please note
that currently, only Linux is supported. Additional platform support
will be added if necessary.
2024-08-18 19:16:53 -05:00

14 lines
275 B
Python

cc_test(
name = "unittest",
deps = [
"//:cpptrace",
"@googletest//:gtest",
"@googletest//:gtest_main"
],
srcs = [
"unit/object_trace.cpp",
"unit/raw_trace.cpp",
"unit/stacktrace.cpp"
],
linkstatic = 1,
)