blob: 5be5bc9987e62566f21529f4fd8aac0b25d9a8eb [file] [log] [blame]
project('testprovider','c')
deplib = dependency('libtestprovider', static:true)
dprovidertest = executable('dprovidertest',
files('./receiver.c'),
dependencies:[deplib],
c_args:['-Wall','-Werror'],
)
test('testprovider',dprovidertest)