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