aboutsummaryrefslogtreecommitdiff
path: root/src/kristall.pro
diff options
context:
space:
mode:
authorFelix (xq) Queißner <git@mq32.de>2020-06-16 22:01:59 +0200
committerFelix (xq) Queißner <git@mq32.de>2020-06-16 22:01:59 +0200
commita3f3e3933c4a2522e233917a6795c6e9d677e65c (patch)
tree6e1bd483bbd5e8ca6fee4566e544de48bfa754a6 /src/kristall.pro
parentbc18d9356828f1ae40d3b4ce5432b30ca13cfc15 (diff)
downloadkristall-a3f3e3933c4a2522e233917a6795c6e9d677e65c.tar.gz
Refactoring: Changes internal structure of requests and unifies a lot of code. Now all errors are handled the same.
Diffstat (limited to 'src/kristall.pro')
-rw-r--r--src/kristall.pro11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/kristall.pro b/src/kristall.pro
index e46b735..4084fce 100644
--- a/src/kristall.pro
+++ b/src/kristall.pro
@@ -2,7 +2,6 @@ QT += core gui svg
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network multimedia multimediawidgets
-CONFIG += c++17
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
@@ -19,6 +18,10 @@ LIBS += -lcrypto
QMAKE_CFLAGS += -Wno-unused-parameter
QMAKE_CXXFLAGS += -Wno-unused-parameter
+# Enable C++17
+QMAKE_CXXFLAGS += -std=c++17
+CONFIG += c++17
+
win32-msvc {
QMAKE_CFLAGS -= -Wno-unused-parameter
QMAKE_CXXFLAGS -= -Wno-unused-parameter
@@ -42,6 +45,7 @@ DEPENDPATH += $$PWD/../lib/luis-l-gist/
SOURCES += \
../lib/luis-l-gist/interactiveview.cpp \
+ abouthandler.cpp \
browsertab.cpp \
certificatehelper.cpp \
certificatemanagementdialog.cpp \
@@ -51,6 +55,7 @@ SOURCES += \
documentstyle.cpp \
elidelabel.cpp \
favouritecollection.cpp \
+ filehandler.cpp \
fingerclient.cpp \
geminiclient.cpp \
geminirenderer.cpp \
@@ -63,6 +68,7 @@ SOURCES += \
mediaplayer.cpp \
newidentitiydialog.cpp \
plaintextrenderer.cpp \
+ protocolhandler.cpp \
protocolsetup.cpp \
settingsdialog.cpp \
ssltrust.cpp \
@@ -73,6 +79,7 @@ SOURCES += \
HEADERS += \
../lib/luis-l-gist/interactiveview.hpp \
+ abouthandler.hpp \
browsertab.hpp \
certificatehelper.hpp \
certificatemanagementdialog.hpp \
@@ -82,6 +89,7 @@ HEADERS += \
documentstyle.hpp \
elidelabel.hpp \
favouritecollection.hpp \
+ filehandler.hpp \
fingerclient.hpp \
geminiclient.hpp \
geminirenderer.hpp \
@@ -94,6 +102,7 @@ HEADERS += \
mediaplayer.hpp \
newidentitiydialog.hpp \
plaintextrenderer.hpp \
+ protocolhandler.hpp \
protocolsetup.hpp \
settingsdialog.hpp \
ssltrust.hpp \