1 project('libvduse', 'c',
2 license: 'GPL-2.0-or-later',
3 default_options: ['c_std=gnu99'])
5 libvduse = static_library('vduse',
7 c_args: '-D_GNU_SOURCE')
9 libvduse_dep = declare_dependency(link_with: libvduse,
10 include_directories: include_directories('.'))