mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 10:20:07 +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.
9 lines
281 B
Meson
9 lines
281 B
Meson
app4_resources = gnome.compile_resources('exampleapp4_resources',
|
|
'exampleapp.gresource.xml',
|
|
source_dir: meson.current_source_dir())
|
|
|
|
executable('exampleapp4',
|
|
'exampleapp.c', 'exampleappwin.c', 'main.c', app4_resources,
|
|
dependencies: libgtk_dep,
|
|
c_args: common_cflags)
|