We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028fbdc commit 22e8dc0Copy full SHA for 22e8dc0
build/python.prf
@@ -66,11 +66,10 @@ contains(PKGCONFIG, "python.*"){
66
isEmpty(PYTHON_PATH):PYTHON_PATH=$(PYTHON_PATH)
67
isEmpty(PYTHON_PATH)|!exists("$$PYTHON_PATH\\include") | !exists("$$PYTHON_PATH\\libs\\") {
68
error("PYTHON_PATH must be set to correct folder with \\libs and \\include subfolders ")
69
- }
70
-
71
- INCLUDEPATH += $$shell_path($${PYTHON_PATH}/include)
+ }
+ INCLUDEPATH += $${PYTHON_PATH}/include
72
73
- LIBS += $$shell_path(-L$${PYTHON_PATH}/libs)
+ LIBS += -L$${PYTHON_PATH}/libs
74
LIBS += -lpython$${PYTHON_VERSION_MAJOR}$${PYTHON_VERSION_MINOR}$${DEBUG_EXT}
75
76
# Hack for "CONFIG+=testcase" and 'make check' to add python's dll to PATH
0 commit comments