The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
364 B
11 lines
364 B
8 years ago
|
#!/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')
|