14 |
####################################################### |
####################################################### |
15 |
# |
# |
16 |
|
|
17 |
import os |
import sys, os |
18 |
|
|
19 |
source_root = os.path.realpath('.') |
source_root = os.path.realpath('.') |
20 |
|
|
23 |
libinstall = os.path.join(source_root,'lib') |
libinstall = os.path.join(source_root,'lib') |
24 |
exinstall = os.path.join(source_root,'examples') |
exinstall = os.path.join(source_root,'examples') |
25 |
|
|
26 |
# locations of include files for python |
# locations of files for python |
27 |
python_root = 'C:/python25' |
py_vers = '%s%s'%(sys.version_info[0],sys.version_info[1]) |
28 |
|
python_root = 'C:/python' + py_vers |
29 |
python_cmd = os.path.join(python_root,'python') |
python_cmd = os.path.join(python_root,'python') |
30 |
python_path = os.path.join(python_root,'include') |
python_path = os.path.join(python_root,'include') |
31 |
python_lib_path = os.path.join(python_root,'libs') |
python_lib_path = os.path.join(python_root,'libs') |
32 |
python_lib = 'python25' |
python_lib = 'python' + py_vers |
33 |
|
|
34 |
# locations of libraries for boost |
# locations of libraries for boost |
35 |
dotdot = os.path.realpath('..') |
dotdot = os.path.realpath('..') |