aboutsummaryrefslogtreecommitdiff
path: root/manual tests/1 wrap/meson.build
blob: 99ea2605945bbefa8b2ed02478b01235b1dfb07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)