-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig_template.cfg
120 lines (94 loc) · 3.9 KB
/
config_template.cfg
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
######################################################################
# This file contains configurations that depend on your system
#
# This is just a template that isn't used during compilation.
# Rename this file to "config.cfg" and do any necessary modifications.
#
# The content of the file is just Python code that has to set a few
# predefined variables that are used by the setup script to compile
# the package.
#
# Common variables:
#
# - INC_DIRS: This is a list of additional directories that should be
# searched for header files.
# - LIB_DIRS: This is a list of additional directories that should be
# searched for libraries.
# - LIBS: This list contains the libraries that should be used
# during linking.
# - MACROS: This list contains 2-tuples (<name>, <value>) that define
# preprocessor macros which should be set. <value> can be
# None if you only want to define the symbol. Example:
# MACROS += [("GCC_3_1", None)]
# - BOOST_LIB: This is the name of the Boost.Python library to link with
# (default: "boost_python")
#
# Note: Always *add* items to one of the lists instead of replacing
# the entire list.
######################################################################
######################################################################
# Do you want to install the 'light' version of cgkit? Then uncomment
# the following line. In this case, all other configuration settings
# have no effect anymore and can be ignored.
# The light version will only install pure Python modules, so no
# C/C++ compiler is required.
######################################################################
#INSTALL_CGKIT_LIGHT = True
######################################################################
# Boost.Python settings
######################################################################
# Name of the Boost.Python library to link with
#BOOST_LIB = "boost_python"
# Name of the Boost.Python runtime dll (only relevant on Windows)
#BOOST_DLL = "boost_python.dll"
######################################################################
# Additional libraries
######################################################################
#LIBS += []
######################################################################
# STLport settings
######################################################################
# Is STLport used or not (only relevant on Windows)
# If it is used, the STLport DLL will be copied into the cgkit directory
#USING_STLPORT = True
# Base path where STLport can be found (only relevant on Windows)
#STLPORT_BASE = r"C:\Programme\Programmieren\STLport-4.6.2"
# Name of the STLport runtime dll (only relevant on Windows)
# (this can also contain an absolute path to the dll in which case
# the STLPORT_BASE variable is ignored when copying the dll)
#STLPORT_DLL = "stlport_vc646.dll"
######################################################################
# Optional libraries
######################################################################
####### Libd3DS #######
#LIB3DS_AVAILABLE = True
#LIB3DS_PATH = r"C:\Programme\Programmieren\lib3ds-1.2.0"
#LIB3DS_LIBNAME = "lib3ds-120s"
####### CyberX3D #######
#CYBERX3D_AVAILABLE = True
#CYBERX3D_PATH = r""
#XERCES_PATH = r""
####### Ogre3D #######
#OGRE_AVAILABLE = False
#INC_DIRS += []
#LIB_DIRS += []
####### 3DXWare SpaceMouse/SpaceBall SDK #######
#THREEDXWARE_AVAILABLE = True
#INC_DIRS += []
#LIB_DIRS += []
#LIBS += ["siapp"]
####### Wintab #######
#WINTAB_AVAILABLE = True
#INC_DIRS += []
#LIB_DIRS += []
#LIBS += ["wintab32"]
####### Data Glove #######
# The variable GLOVESDK_DLL must contain the name of the glove dll.
# It can either be the full path or filename only in which case it's
# assumed to be located in GLOVESDK_BASE\dll.
#GLOVESDK_AVAILABLE = True
#GLOVESDK_BASE = ""
#GLOVESDK_DLL = "fglove.dll"
#INC_DIRS += []
#LIB_DIRS += []
#LIBS += ["fglove"]