mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
aaeec84d75
In certain scenarios, address the issue where gnome.compile_resources fails to transmit the present source directory. This is most notably visible with MSBuild.
16 lines
366 B
Meson
16 lines
366 B
Meson
app6_resources = gnome.compile_resources('exampleapp6_resources',
|
|
'exampleapp.gresource.xml',
|
|
source_dir: meson.current_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)
|