summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTheBloke <devnull@localhost>2014-07-08 04:05:33 +0100
committerTheBloke <devnull@localhost>2014-07-08 04:05:33 +0100
commit46a32ff3b7bcf6bd4ccc9470c7712a4bbd429a48 (patch)
tree865d2ca2e5fe16168116a1a31d025762bd2a4ef5 /src
parent0046d8710e895a158b7e49678eae1514c5b7dc88 (diff)
Additional 'make install' step - install boost_python DLL to output(d)\DLLs
Extended the new ModOrganizer.pro 'make install' steps, to now also copy $$(BOOSTPATH)\stage\lib\boost_python-vc*-mt-1*.dll This is the final install step required, so that now ModOrganizer.exe works fully when a Qt-Creator "Run" step is performed. The wildcard should pick up the right version of the library regardless of MSVC compiler version used. Updated Qt5 version check to the standardised greaterThan check.
Diffstat (limited to 'src')
-rw-r--r--src/ModOrganizer.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro
index b345d64b..859f4caf 100644
--- a/src/ModOrganizer.pro
+++ b/src/ModOrganizer.pro
@@ -30,11 +30,12 @@ STATICDATAPATH = $${DESTDIR}\\..\\tools\\static_data\\dlls
DLLSPATH = $${DESTDIR}\\dlls
otherlibs.path = $$DLLSPATH
-otherlibs.files += $${STATICDATAPATH}\\7z.dll
+otherlibs.files += $${STATICDATAPATH}\\7z.dll \
+ $$(BOOSTPATH)\\stage\\lib\\boost_python-vc*-mt-1*.dll
qtlibs.path = $$DLLSPATH
-equals(QT_MAJOR_VERSION, 5) {
+greaterThan(QT_MAJOR_VERSION, 4) {
QTLIBNAMES += Core Gui Network OpenGL Script Sql Svg Qml Quick Webkit Widgets Xml XmlPatterns
} else {
QTLIBNAMES += Core Declarative Gui Network OpenGL Script Sql Svg Webkit Xml XmlPatterns