1# Some systems do not provide gsl-config. So here the locations can be entered
2# by hand.
3import os
4
5# The path to the directory where gsl is installed. Currently setup.py assumes
6# that the include files are located in "prefix/include".
7prefix = os.path.join("C:\\", "Programs", "GSL", "gsl-1.3")
8
9cflags = "-g -I" + os.path.join(prefix, "include")
10
11libs   = "-L" + os.path.join(prefix, "lib")+ " -lgsl -lgslcblas -lm"
12
13# Enter the correct GSL versions by hand..
14version = "1.3"
15
16
17# swig_extension.py needs swig to generate the approbriate wrapper files. This
18# variable only needs to be correct is you use USE_SWIG=1 in setup.py
19swig = os.path.join("F:\\", "Programs", "Swig", "swig")
20#swig = os.path.join("C:\\", "Programs", "Swig", "SWIG-1.3.19", "swig")
21
22