summaryrefslogtreecommitdiff
path: root/build/win32/gen-win32-g-ir-tools.py
blob: 1336086589c063f7e2f61769482539bcc402a2f0 (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
45
46
47
48
49
50
51
52
53
54
#!/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 optparse

import replace
from gi_msvc_build_utils import parent_dir

def setup_vars_tools(module, func, srcfile, outfile):
    # This doesn't really matter for cmd.exe usage, but
    # let's just set this like this here, in case one
    # wants to use MinGW with the scripts generated here
    replace.replace(srcfile,
                    outfile + '.tmp0',
                    '@PYTHON@',
                    'python')

    # Now replace the needed items...
    replace.replace(outfile + '.tmp0',
                    outfile + '.tmp',
                    '@TOOL_MODULE@',
                    module)
    os.unlink(outfile + '.tmp0')
    replace.replace(outfile + '.tmp',
                    outfile,
                    '@TOOL_FUNCTION@',
                    func)
    os.unlink(outfile + '.tmp')

def main(argv):
    modules = ['scannermain','annotationmain','docmain']
    funcs = ['scanner_main','annotation_main','doc_main']
    tools = ['g-ir-scanner','g-ir-annotation-tool','g-ir-doc-tool']

    srcroot = parent_dir(parent_dir(__file__))
    preset_tools_path = os.path.join(srcroot, 'tools')
    src = os.path.join(preset_tools_path, 'g-ir-tool-template.in')

    for i in range(3):
        dest = os.path.join(preset_tools_path, tools[i])
        setup_vars_tools(modules[i], funcs[i], src, dest)

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