mirror of https://github.com/gabime/spdlog.git
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.
26 lines
289 B
Python
26 lines
289 B
Python
![]()
8 years ago
|
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',
|
||
|
],
|
||
|
)
|