mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
This fixes the use case of adding the include folder manually to an outside project.
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',
|
|
],
|
|
)
|