mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-27 07:56:14 +01:00
0b9229beca
It doesn't work yet without the user manually adding ffi bits. That's the topic of the next commit. Signed-off-by: David Zeuthen <davidz@redhat.com>
12 lines
180 B
Python
Executable File
12 lines
180 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
import os
|
|
import sys
|
|
|
|
path = os.path.join('@libdir@', 'gdbus-codegen')
|
|
sys.path.insert(0, path)
|
|
|
|
from codegen_main import codegen_main
|
|
|
|
sys.exit(codegen_main())
|