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.
This commit is contained in:
Paul Hollinsky
2021-04-23 20:01:53 -04:00
parent b7ce9819bd
commit 6c1cbc9db8
44 changed files with 1 additions and 5 deletions
+38
View File
@@ -0,0 +1,38 @@
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',
],
)