Skip to content

Commit

Permalink
Fix irritatingly wrong version number for Qt6
Browse files Browse the repository at this point in the history
  • Loading branch information
usiems committed Dec 15, 2023
1 parent d0ddad6 commit a35afb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build/PythonQt_QtAll.prf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ CONFIG(debug, debug|release) {
}


win32-g++: LIBS += $$DESTDIR/../lib/PythonQt_QtAll-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}.dll
win32-msvc*: LIBS += $$DESTDIR/../lib/PythonQt_QtAll-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}.lib
unix: LIBS += -L$$DESTDIR/../lib -lPythonQt_QtAll-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}
win32-g++: LIBS += $$DESTDIR/../lib/PythonQt_QtAll-Qt$${QT_MAJOR_VERSION}-Python$${PYTHON_VERSION}$${DEBUG_EXT}.dll
win32-msvc*: LIBS += $$DESTDIR/../lib/PythonQt_QtAll-Qt$${QT_MAJOR_VERSION}-Python$${PYTHON_VERSION}$${DEBUG_EXT}.lib
unix: LIBS += -L$$DESTDIR/../lib -lPythonQt_QtAll-Qt$${QT_MAJOR_VERSION}-Python$${PYTHON_VERSION}$${DEBUG_EXT}
2 changes: 1 addition & 1 deletion extensions/PythonQt_QtAll/PythonQt_QtAll.pro
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ isEmpty( PYTHONQTALL_CONFIG ) {
CONFIG += $${PYTHONQTALL_CONFIG}
}

TARGET = PythonQt_QtAll-Qt5-PythonXY
TARGET = PythonQt_QtAll-Qt$${QT_MAJOR_VERSION}-PythonXY
TEMPLATE = lib

DESTDIR = ../../lib
Expand Down

0 comments on commit a35afb9

Please sign in to comment.