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
316 B
14 lines
316 B
project('downloader', 'c') |
|
|
|
s = subproject('sqlite') |
|
|
|
libdl = find_library('dl', required : false) |
|
|
|
e = executable('dtest', 'main.c', |
|
include_directories : s.get_variable('sqinc'), |
|
link_args : ['-pthread'], |
|
c_args : '-pthread', |
|
dependencies : libdl, |
|
link_with : s.get_variable('sqlib')) |
|
|
|
test('dltest', e)
|
|
|