gnome.compile_resources(): Add ability to output gresource bundles

Closes #1061
pull/1077/head
Patrick Griffis 8 years ago committed by Igor Gnatenko
parent 587a0bb3d1
commit 8dd32506f4
  1. 18
      mesonbuild/modules/gnome.py
  2. 1
      test cases/frameworks/7 gnome/installed_files.txt
  3. 9
      test cases/frameworks/7 gnome/resources/meson.build
  4. 10
      test cases/frameworks/7 gnome/resources/resources.py

@ -108,8 +108,19 @@ can not be used with the current version of glib-compiled-resources, due to
cmd += mesonlib.stringlistify(kwargs.pop('extra_args', []))
gresource = kwargs.pop('gresource_bundle', False)
if gresource:
output = args[0] + '.gresource'
name = args[0] + '_gresource'
else:
output = args[0] + '.c'
name = args[0] + '_c'
if kwargs.get('install', False) and not gresource:
raise MesonException('Only gresource files can be installed')
kwargs['input'] = args[1]
kwargs['output'] = args[0] + '.c'
kwargs['output'] = output
kwargs['depends'] = depends
if not mesonlib.version_compare(glib_version, gresource_dep_needed_version):
# This will eventually go out of sync if dependencies are added
@ -119,7 +130,10 @@ can not be used with the current version of glib-compiled-resources, due to
depfile = kwargs['output'] + '.d'
kwargs['depfile'] = depfile
kwargs['command'] = copy.copy(cmd) + ['--dependency-file', '@DEPFILE@']
target_c = build.CustomTarget(args[0] + '_c', state.subdir, kwargs)
target_c = build.CustomTarget(name, state.subdir, kwargs)
if gresource: # Only one target for .gresource files
return [target_c]
h_kwargs = {
'command': cmd,

@ -12,3 +12,4 @@ usr/share/gir-1.0/Meson-1.0.gir
usr/share/gir-1.0/MesonDep1-1.0.gir
usr/share/gir-1.0/MesonDep2-1.0.gir
usr/share/glib-2.0/schemas/com.github.meson.gschema.xml
usr/share/simple-resources.gresource

@ -11,6 +11,15 @@ simple_res_exe = executable('simple-resources-test',
dependencies: gio)
test('simple resource test', simple_res_exe)
gnome.compile_resources('simple-resources',
'simple.gresource.xml',
gresource_bundle: true,
install: true,
install_dir: get_option('datadir'),
source_dir : '../resources-data',
)
test('simple resource test (gresource)', find_program('resources.py'))
if glib.version() >= '2.52.0'
# This test cannot pass if GLib version is older than 9.99.9.
# Meson will raise an error if the user tries to use the 'dependencies'

@ -0,0 +1,10 @@
#!/usr/bin/env python3
import os
from gi.repository import Gio
if __name__ == '__main__':
res = Gio.resource_load(os.path.join('resources', 'simple-resources.gresource'))
Gio.Resource._register(res)
data = Gio.resources_lookup_data('/com/example/myprog/res1.txt', Gio.ResourceLookupFlags.NONE)
assert(data.get_data() == b'This is a resource.\n')
Loading…
Cancel
Save