24 lines
375 B
Python
24 lines
375 B
Python
|
cxx_library(
|
||
|
name = 'microprofiler',
|
||
|
force_static = True,
|
||
|
compiler_flags = [
|
||
|
'-Wall',
|
||
|
'-Werror',
|
||
|
'-std=c++11',
|
||
|
'-fexceptions',
|
||
|
],
|
||
|
exported_headers = [
|
||
|
'MicroProfiler.h',
|
||
|
],
|
||
|
srcs = [
|
||
|
'MicroProfiler.cpp',
|
||
|
],
|
||
|
header_namespace = 'microprofiler',
|
||
|
deps = [
|
||
|
'//xplat/third-party/glog:glog',
|
||
|
],
|
||
|
visibility = [
|
||
|
'PUBLIC',
|
||
|
],
|
||
|
)
|