mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 21:20:09 +00:00
16 lines
343 B
Meson
16 lines
343 B
Meson
app6_resources = gnome.compile_resources('exampleapp6_resources',
|
|
'exampleapp.gresource.xml',
|
|
source_dir: '.')
|
|
|
|
app6_schemas = gnome.compile_schemas()
|
|
|
|
executable('exampleapp6',
|
|
'exampleapp.c',
|
|
'exampleappwin.c',
|
|
'main.c',
|
|
'exampleappprefs.c',
|
|
app6_resources,
|
|
app6_schemas,
|
|
dependencies: libgtk_dep,
|
|
c_args: common_cflags)
|