summaryrefslogtreecommitdiff
path: root/build/win32/gen-win32-cairo-gir.py
blob: 464d9849e982ffd33f0bcb63abe8870e6d2bb492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/python
#
# Expand the bundled cairo-1.0.gir.in files
# for use in Visual C++ builds of G-I
#
# Author: Fan, Chun-wei
# Date: January 20, 2014
#
# (Adapted from setup.py in
# $(glib_src_root)/build/win32/setup.py written by Shixin Zeng)

import os
import sys
import argparse

import replace

from gi_msvc_build_utils import parent_dir

def main(argv):
    parser = argparse.ArgumentParser(description='Generate the complete cairo-1.0.gir')
    parser.add_argument('--dllname',
                        required=True,
                        help='Full file name of the Cairo-GObject DLL for the Cairo Introspection File')
    args = parser.parse_args()

    # Get the srcroot and the path where the bundled .gir files reside in the package
    srcroot = parent_dir(parent_dir(__file__))
    preset_gir_path = os.path.join(srcroot, 'gir')

    # Set up variables in cairo-1.0.gir.in to produce cairo-1.0.gir
    replace.replace(os.path.join(preset_gir_path, 'cairo-1.0.gir.in'),
                    'cairo-1.0.gir.tmp',
                    '%CAIRO_GIR_PACKAGE%',
                    'cairo-gobject')

    replace.replace('cairo-1.0.gir.tmp',
                    'cairo-1.0.gir',
                    '%CAIRO_SHARED_LIBRARY%',
                    args.dllname)
    os.unlink('cairo-1.0.gir.tmp')

if __name__ == '__main__':
    sys.exit(main(sys.argv))