Skip to content

Commit 7364b63

Browse files
committed
added naming patch to make versioning clearer
1 parent 6305739 commit 7364b63

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

build/PythonQt.prf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ CONFIG(debug, debug|release) {
1111
DEBUG_EXT =
1212
}
1313

14-
win32::LIBS += $$PWD/../lib/PythonQt$${DEBUG_EXT}.lib
15-
unix::LIBS += -L$$PWD/../lib -lPythonQt$${DEBUG_EXT}
14+
win32::LIBS += $$PWD/../liPythonQt-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}.lib
15+
unix::LIBS += -L$$PWD/../lib -lPythonQt-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}

build/PythonQt_QtAll.prf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ CONFIG(debug, debug|release) {
99
DEBUG_EXT =
1010
}
1111

12-
win32::LIBS += $$PWD/../lib/PythonQt_QtAll$${DEBUG_EXT}.lib
13-
unix::LIBS += -L$$PWD/../lib -lPythonQt_QtAll$${DEBUG_EXT}
12+
win32::LIBS += $$PWD/../liPythonQt_QtAll-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}.lib
13+
unix::LIBS += -L$$PWD/../lib -lPythonQt_QtAll-Qt5-Python$${PYTHON_VERSION}$${DEBUG_EXT}

build/common.prf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ PYTHONQT_GENERATED_PATH = $$PWD/../generated_cpp
5050
}
5151
}
5252

53+
VERSION = 3.2.0

extensions/PythonQt_QtAll/PythonQt_QtAll.pro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# If Qt has support for webkit, add it:
22
qtHaveModule(webkit):CONFIG += PythonQtWebKit
33

4-
TARGET = PythonQt_QtAll
4+
TARGET = PythonQt_QtAll-Qt5-PythonXY
55
TEMPLATE = lib
66

77
DESTDIR = ../../lib
88

99
include ( ../../build/common.prf )
1010
include ( ../../build/PythonQt.prf )
11+
TARGET = $$replace(TARGET, PythonXY, Python$${PYTHON_VERSION})
1112

1213
CONFIG += dll qt
1314

src/src.pro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# $Source$
55
# --------------------------------------------------
66

7-
TARGET = PythonQt
7+
TARGET = PythonQt-Qt5-PythonXY
88
TEMPLATE = lib
99

1010

@@ -35,6 +35,7 @@ INCLUDEPATH += $$PWD
3535

3636
include ( ../build/common.prf )
3737
include ( ../build/python.prf )
38+
TARGET = $$replace(TARGET, PythonXY, Python$${PYTHON_VERSION})
3839

3940
include ( src.pri )
4041

0 commit comments

Comments
 (0)