ThirdParty: Add optional-lite polyfill

Thanks to all who have made contributions to
https://github.com/martinmoene/optional-lite
This commit is contained in:
Paul Hollinsky
2021-04-06 18:01:26 -04:00
parent 18394d0cfb
commit 4a1d0382f2
44 changed files with 7456 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
cxx_binary(
name = 'test',
header_namespace = '',
headers = glob([
'*.h',
]),
srcs = glob([
'*.cpp',
]),
compiler_flags = [
'-std=c++11',
],
deps = [
'//:optional-lite',
],
)