8 lines
197 B
Meson
8 lines
197 B
Meson
project('neco', 'c', default_options : ['c_std=gnu11'])
|
|
|
|
cc = meson.get_compiler('c')
|
|
libubox_dep = cc.find_library('ubox')
|
|
|
|
libmnl_dep = dependency('libmnl', method : 'pkg-config')
|
|
|
|
subdir('src')
|