Files
libicsneo/include/icsneo/third-party/optional-lite/test/BUCK
T
Paul Hollinsky 6c1cbc9db8 Optional: Move optional-lite to the include/third-party directory
This fixes the use case of adding the include folder
manually to an outside project.
2021-04-23 20:01:53 -04:00

17 lines
211 B
Python

cxx_binary(
name = 'test',
header_namespace = '',
headers = glob([
'*.h',
]),
srcs = glob([
'*.cpp',
]),
compiler_flags = [
'-std=c++11',
],
deps = [
'//:optional-lite',
],
)