mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-13 07:08:56 +03:00
14 lines
273 B
Meson
14 lines
273 B
Meson
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)
|