2022-05-23 11:46:08 +03:00
|
|
|
project('libvduse', 'c',
|
|
|
|
license: 'GPL-2.0-or-later',
|
2022-12-22 23:36:51 +03:00
|
|
|
default_options: ['warning_level=1', 'c_std=gnu99'])
|
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
add_project_arguments(cc.get_supported_arguments('-Wsign-compare',
|
|
|
|
'-Wdeclaration-after-statement',
|
|
|
|
'-Wstrict-aliasing'),
|
|
|
|
native: false, language: 'c')
|
2022-05-23 11:46:08 +03:00
|
|
|
|
|
|
|
libvduse = static_library('vduse',
|
|
|
|
files('libvduse.c'),
|
|
|
|
c_args: '-D_GNU_SOURCE')
|
|
|
|
|
|
|
|
libvduse_dep = declare_dependency(link_with: libvduse,
|
|
|
|
include_directories: include_directories('.'))
|