You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/example/BUCK

26 lines
289 B
Python

cxx_binary(
name = 'example',
srcs = [
'example.cpp',
],
compiler_flags = [
'-std=c++14',
],
deps = [
'//:spdlog',
],
)
cxx_binary(
name = 'bench',
srcs = [
'bench.cpp',
],
compiler_flags = [
'-std=c++14',
],
deps = [
'//:spdlog',
],
)