This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neco/meson.build

10 lines
257 B
Meson
Raw Permalink Normal View History

project('neco', 'c', default_options : ['c_std=gnu11'])
2018-12-29 13:30:53 +01:00
cc = meson.get_compiler('c')
libubox_dep = cc.find_library('ubox')
libjson_c_dep = dependency('json-c', method : 'pkg-config')
libmnl_dep = dependency('libmnl', method : 'pkg-config')
2018-12-29 13:30:53 +01:00
subdir('src')