blob: 7573265b6af7db059594da30904997dca0017b21 (
plain)
1
2
3
4
5
6
7
8
9
10
|
sources += files([
'ccan/list/list.c',
'ccan/str/debug.c',
'ccan/str/str.c',
])
if get_option('buildtype') == 'debug'
add_project_arguments('-DCCAN_LIST_DEBUG=1', language : ['c', 'cpp'])
add_project_arguments('-DCCAN_STR_DEBUG=1', language : ['c', 'cpp'])
endif
|