Hoa Dinh 5a24ea0b42 Create headers symlinks for FBReactKit
Reviewed By: javache, skotchvail

Differential Revision: D3946452

fbshipit-source-id: c6354f529bec2f9635a0ecf5f65e21dc4e17b1e4
2016-09-30 14:28:41 -07:00

25 lines
415 B
Python

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