1project('test-static-link', 'c')
2
3# This is a dummy project that static links against installed gio.
4# See gio/tests/static-link.py.
5app = executable('test-static-link', 'app.c',
6 dependencies : dependency('gio-2.0', static : true)
7)
8test('test-static-link', app)
9