OpenSSL libs added for Linux

This commit is contained in:
pokamest 2021-10-17 07:00:00 -07:00
parent 6e9c43c37b
commit ca25e257ef
6 changed files with 28 additions and 16 deletions

View file

@ -3,12 +3,12 @@
#include <QDir>
#include <QStandardPaths>
#include <QUrl>
#include <Utils.h>
#include <iostream>
#include "debug.h"
#include "defines.h"
#include "utils.h"
QFile Debug::m_file;
QTextStream Debug::m_textStream;
@ -34,7 +34,6 @@ bool Debug::init()
{
qSetMessagePattern("%{time yyyy-MM-dd hh:mm:ss} %{type} %{message}");
#ifndef QT_DEBUG
QString path = userLogsDir();
QDir appDir(path);
if (!appDir.mkpath(path)) {
@ -51,6 +50,8 @@ bool Debug::init()
}
m_file.setTextModeEnabled(true);
m_textStream.setDevice(&m_file);
#ifndef QT_DEBUG
qInstallMessageHandler(debugMessageHandler);
#endif