mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-10-31 19:46:16 +01:00
9 lines
265 B
Meson
9 lines
265 B
Meson
|
project('test-static-link', 'c')
|
||
|
|
||
|
# This is a dummy project that static links against installed gio.
|
||
|
# See gio/tests/static-link.py.
|
||
|
app = executable('test-static-link', 'app.c',
|
||
|
dependencies : dependency('gio-2.0', static : true)
|
||
|
)
|
||
|
test('test-static-link', app)
|