The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
273 B

project('downloader', 'c')
cc = meson.get_compiler('c')
s = subproject('sqlite').get_variable('sqlite_dep')
th = dependency('threads')
libdl = cc.find_library('dl', required : false)
e = executable('dtest', 'main.c',
dependencies : [th, libdl, s])
test('dltest', e)