Import Upstream version 2.72.4

This commit is contained in:
evinadmin 2023-07-04 11:23:22 +02:00
commit 4ef3ff9793
2003 changed files with 1332420 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#include <gio/gio.h>
int main(int argc, char *argv[])
{
GApplication *app = g_application_new (NULL, 0);
g_object_unref (app);
return 0;
}

View file

@ -0,0 +1,8 @@
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)