Moved to the latest python 3.5.2

This commit is contained in:
Matthias Jung
2016-08-03 10:29:10 +02:00
parent 37fae6d27d
commit ad25dc65d6

View File

@@ -26,8 +26,8 @@ macx: {
LIBS += -F/opt/qwt-6.1.2/lib/ -framework qwt
INCLUDEPATH += /opt/qwt-6.1.2/lib/qwt.framework/Headers
DEPENDPATH += /opt/qwt-6.1.2
INCLUDEPATH += /opt/local/Library/Frameworks/Python.framework/Versions/3.4/include/python3.4m
LIBS += -L/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/config-3.4m/ -lpython3.4
INCLUDEPATH += /usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/include/python3.5m
LIBS += -L/usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/lib -lpython3.5
}
# QWT library and header files
@@ -58,12 +58,12 @@ message(Python home is $${python_home})
python_headers = $$(PYTHON_HEADERS)
isEmpty(python_headers) {
python_headers = /opt/python/include/python3.4m
python_headers = /opt/python/include/python3.5m
}
message(Getting python headers from $${python_headers})
CONFIG(python) {
LIBS += -L$${python_home} -lpython3.4m
LIBS += -L$${python_home} -lpython3.5m
INCLUDEPATH += $${python_headers}
}