aboutsummaryrefslogtreecommitdiff
path: root/manual tests/1 basic/meson.build
blob: afdda3404910b5bdc4d0e8e10f7877ac7dac0b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
project('downloader', 'c')

s = subproject('sqlite')

e = executable('dtest', 'main.c',
include_directories : s.get_variable('sqinc'),
link_args : ['-pthread', '-ldl'],
c_args : '-pthread',
link_with : s.get_variable('sqlib'))

test('dltest', e)