Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
build --//core:codspeed_mode=instrumentation
build --compilation_mode=dbg
build --copt=-O2

# Flip this early to avoid breaking compatibility once it becomes the default.
build --incompatible_disallow_empty_glob
2 changes: 1 addition & 1 deletion core/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CODSPEED_VERSION = "1.1.0"
# Define the codspeed library
cc_library(
name = "codspeed",
srcs = glob(["src/**/*.cpp"] + ["src/**/*.h"] + ["src/**/*.hpp"]),
srcs = glob(["src/**/*.cpp"]),
hdrs = glob(["include/**/*.h"] + ["include/**/*.hpp"]),
includes = ["include"],
defines = [
Expand Down
Loading