From abe3f6b191340176a7f880ffa9f071a930e47ee4 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Mon, 6 Dec 2021 23:43:46 -0600 Subject: TLS debugging --- src/ModOrganizer.pro | 4 ++++ src/moapplication.cpp | 4 ++++ 2 files changed, 8 insertions(+) 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 . #include #include #include +#include // 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"); -- cgit v1.3.1