mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 04:31:09 +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
app2_resources = gnome.compile_resources('exampleapp2_resources',
|
|
'exampleapp.gresource.xml',
|
|
source_dir: meson.current_source_dir())
|
|
|
|
executable('exampleapp2',
|
|
'exampleapp.c', 'exampleappwin.c', 'main.c', app2_resources,
|
|
dependencies: libgtk_dep,
|
|
c_args: common_cflags)
|