-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSiteConfig.py
62 lines (45 loc) · 1.21 KB
/
SiteConfig.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
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
##############################################################################
#
# $Id: SiteConfig.py 648 2011-03-27 00:09:50Z weegreenblobbie $
#
# SiteConfig.py
#
# Simply set these values to overide anything during configuration.
#
###############################################################################
# EXPERIMENTAL!
# EXPERIMENTAL!
# EXPERIMENTAL!
# The use of this file hasn't been tested all that much!
###############################################################################
# Compiler stuff
# C compiler
##CC = "gcc"
CC = ""
# C++ compiler
##CPP = "g++"
CPP = ""
# C compiler flags
##CFLAGS = "-O2"
CFLAGS = ""
# C++ compiler flags
##CXXFLAGS = "-O2"
CXXFLAGS = ""
# link flags
LDFLAGS = ""
###############################################################################
# Python stuff
#PYTHON_INCLUDE_DIR = "/usr/include/python2.6"
PYTHON_INCLUDE_DIR = ""
# Linux overrides
#PYTHON_LIB_SO = "python2.6"
PYTHON_LIB_SO = ""
#PYTHON_LIB_DIR = "/usr/lib"
PYTHON_LIB_DIR = ""
# Windows override
##PYTHON_EXE = "C:\Python27\python.exe"
##PYTHON_EXE = "C:\Python26\python.exe"
##PYTHON_EXE = "C:\Python25\python.exe"
PYTHON_EXE = ""
##PYTHON_DOT_LIB = "C:\Python27\libs\python27.lib"
PYTHON_DOT_LIB = ""