mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-06 01:48:37 +02:00
Thanks to all who have made contributions to https://github.com/martinmoene/optional-lite
17 lines
211 B
Python
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',
|
|
],
|
|
)
|