aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/97 link full name/proguser/meson.build
blob: 5be5bc9987e62566f21529f4fd8aac0b25d9a8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
project('testprovider','c')

deplib = dependency('libtestprovider', static:true)

dprovidertest = executable('dprovidertest',
    files('./receiver.c'),
    dependencies:[deplib],
    c_args:['-Wall','-Werror'],
)

test('testprovider',dprovidertest)