Skip to content
Snippets Groups Projects
Commit aba37e00 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Python lib build for windows

parent 44555a58
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ macx|unix { ...@@ -8,7 +8,7 @@ macx|unix {
ROOT = $$system(root-config --prefix) ROOT = $$system(root-config --prefix)
} }
win32 { win32 {
ROOT = "C:/root" # ROOT = "C:/root"
} }
isEmpty(ROOT) { isEmpty(ROOT) {
message("No ROOT installation found. libBornAgainFit and App" will not be compiled.) message("No ROOT installation found. libBornAgainFit and App" will not be compiled.)
......
...@@ -6,7 +6,7 @@ TEMPLATE = lib ...@@ -6,7 +6,7 @@ TEMPLATE = lib
CONFIG += lib # to remove versions from file name CONFIG += lib # to remove versions from file name
QT -= core gui QT -= core gui
#QMAKE_EXTENSION_SHLIB = so # making standard *.so extension #QMAKE_EXTENSION_SHLIB = so # making standard *.so extension
#CONFIG += BORNAGAIN_PYTHON CONFIG += BORNAGAIN_PYTHON
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# common project settings # common project settings
......
...@@ -240,16 +240,26 @@ CONFIG(BORNAGAIN_ROOT) { ...@@ -240,16 +240,26 @@ CONFIG(BORNAGAIN_ROOT) {
#CONFIG += BORNAGAIN_PYTHON #CONFIG += BORNAGAIN_PYTHON
CONFIG(BORNAGAIN_PYTHON) { CONFIG(BORNAGAIN_PYTHON) {
# user wants to compile python module # user wants to compile python module
WhichPython=$$system(which python) macx|unix {
WhichPython=$$system(which python)
}
win32 {
WhichPython="C:/Python27"
}
isEmpty(WhichPython) { isEmpty(WhichPython) {
# we do not have python # we do not have python
error("Can not find any sign of python") error("Can not find any sign of python")
} else { } else {
# we have python # we have python
pythonvers=$$system("python -c 'import sys; sys.stdout.write(sys.version[:3])'") pythonvers=$$system("python -c \"import sys; sys.stdout.write(sys.version[:3])\" ")
pythonsysincdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/include/python\" + sys.version[:3])'") macx|unix {
#pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib/python\" + sys.version[:3])'") pythonsysincdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/include/python\" + sys.version[:3])'")
pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib\" )'") pythonsyslibdir=$$system("python -c 'import sys; sys.stdout.write(sys.prefix + \"/lib\" )'")
}
win32 {
pythonsysincdir=$${WhichPython}/include
pythonsyslibdir=$${WhichPython}/libs
}
#message(we have python) #message(we have python)
#message($$pythonvers) #message($$pythonvers)
#message($$pythonsysincdir) #message($$pythonsysincdir)
...@@ -260,7 +270,7 @@ CONFIG(BORNAGAIN_PYTHON) { ...@@ -260,7 +270,7 @@ CONFIG(BORNAGAIN_PYTHON) {
LIBS += -lboost_python -L$$pythonsyslibdir -lpython$$pythonvers LIBS += -lboost_python -L$$pythonsyslibdir -lpython$$pythonvers
# we need to know the location of numpy # we need to know the location of numpy
pythonnumpy=$$system("python -c 'import sys; import numpy; sys.stdout.write(numpy.get_include())'") pythonnumpy=$$system("python -c \"import sys; import numpy; sys.stdout.write(numpy.get_include())\" ")
!exists($$pythonnumpy/numpy/arrayobject.h): error("Can't find numpy/arrayobject.h in $$pythonnumpy, you have to install python-numpy-devel") !exists($$pythonnumpy/numpy/arrayobject.h): error("Can't find numpy/arrayobject.h in $$pythonnumpy, you have to install python-numpy-devel")
INCLUDEPATH += $$pythonnumpy INCLUDEPATH += $$pythonnumpy
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment