-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.py
36 lines (27 loc) · 1023 Bytes
/
configure.py
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
import os
import sipconfig
# The name of the SIP build file generated by SIP and used by the build
# system.
build_file = "ftgl.sbf"
# Get the SIP configuration information.
config = sipconfig.Configuration()
# Run SIP to generate the code.
os.system(" ".join([config.sip_bin, "-c", ".", "-b", build_file,
"ftgl.sip"]))
# Create the Makefile.
makefile = sipconfig.SIPModuleMakefile(config, build_file)
# Add the library we are wrapping. The name doesn't include any platform
# specific prefixes or extensions (e.g. the "lib" prefix on UNIX, or the
# ".dll" extension on Windows).
makefile.extra_libs = ["ftgl"]
makefile.extra_lflags = [
# this should be set to where libftgl lies
"-L/usr/local/lib"
]
makefile.extra_include_dirs = [
# this should be set to where your FTGL header directory lies
"/usr/local/include",
# this should be set to where your freetype header directory lies
"/usr/local/include/freetype2"]
# Generate the Makefile itself.
makefile.generate()