0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-26 16:11:02 +08:00
2019-12-02 19:51:25 +03:00

13 lines
373 B
Python

cc_library(
name = "easy_profiler",
srcs = glob(["**/*.cpp", "**/*.h"]),
hdrs = glob(["include/**"]),
includes = ["include", "."],
visibility = ["//visibility:public"],
defines = [
"EASY_PROFILER_VERSION_MAJOR=2",
"EASY_PROFILER_VERSION_MINOR=1",
"EASY_PROFILER_VERSION_PATCH=0",
"BUILD_WITH_EASY_PROFILER=1",
]
)