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