libicsneo/include/icsneo/third-party/optional-lite/example/BUCK

39 lines
511 B
Python

cxx_binary(
name = '01-to_int',
srcs = [
'01-to_int.cpp',
],
compiler_flags = [
'-std=c++11',
],
deps = [
'//:optional-lite',
],
)
cxx_binary(
name = '02-nodefltctor',
srcs = [
'02-nodefltctor.cpp',
],
compiler_flags = [
'-std=c++11',
],
deps = [
'//:optional-lite',
],
)
cxx_binary(
name = '04-any-optional-variant',
srcs = [
'04-any-optional-variant.cpp',
],
compiler_flags = [
'-std=c++11',
],
deps = [
'//:optional-lite',
],
)