glib/gio/gdbus-codegen/gdbus-codegen.in
David Zeuthen 0b9229beca Add gdbus-codegen(1) command
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>
2011-04-08 17:11:38 -04:00

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())