summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ModOrganizer.pro4
-rw-r--r--src/moapplication.cpp4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ModOrganizer.pro b/src/ModOrganizer.pro
index fc679a01..c4fd534e 100644
--- a/src/ModOrganizer.pro
+++ b/src/ModOrganizer.pro
@@ -40,6 +40,10 @@ greaterThan(QT_MAJOR_VERSION, 4) {
QTLIBNAMES += Core Declarative Gui Network OpenGL Script Sql Svg Webkit Xml XmlPatterns
}
+greaterThan(QT_MAJOR_VERSION, 5) {
+ QTLIBNAMES += OpenGLWidgets
+}
+
QTLIBSUFFIX = $${QT_MAJOR_VERSION}.dll
CONFIG(debug, debug|release): QTLIBSUFFIX = "d$${QTLIBSUFFIX}" # Can't use Debug: .. here, it ignores the line - no idea why, as it works in BossDummy.pro
diff --git a/src/moapplication.cpp b/src/moapplication.cpp
index 744b6b63..85e02122 100644
--- a/src/moapplication.cpp
+++ b/src/moapplication.cpp
@@ -45,6 +45,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QPainter>
#include <QStyleOption>
#include <QDebug>
+#include <QSSLSocket>
// see addDllsToPath() below
#pragma comment(linker, "/manifestDependency:\"" \
@@ -256,6 +257,9 @@ int MOApplication::setup(MOMultiProcess& multiProcess, bool forceSelect)
sanity::checkIncompatibleModule(m);
}));
+ auto sslBuildVersion = QSslSocket::sslLibraryBuildVersionString();
+ auto sslVersion = QSslSocket::sslLibraryVersionString();
+ log::debug("SSL Build Version: {}, SSL Runtime Version {}", sslBuildVersion, sslVersion);
// nexus interface
tt.start("MOApplication::doOneRun() NexusInterface");