Skip to content

Commit

Permalink
Merge branch 'master' into feature/bandwidth-hotconf
Browse files Browse the repository at this point in the history
  • Loading branch information
BatchDrake committed Aug 19, 2019
2 parents 2b86b33 + 286b1d2 commit ea65fd6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SigDigger.pro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ DEFINES += QT_DEPRECATED_WARNINGS
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0

CONFIG += c++14
equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 9) {
QMAKE_CXXFLAGS += -std=gnu++14
} else {
CONFIG += c++14
}

INCLUDEPATH += $$PWD/include /usr/include/SuWidgets
SOURCES += \
App/AppConfig.cpp \
Expand Down
1 change: 1 addition & 0 deletions include/Suscan/Compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <stdexcept>
#include <memory>
#include <cmath>
#include <sigutils/types.h>

#define SU_ATTEMPT(expr) \
Expand Down
1 change: 1 addition & 0 deletions include/Suscan/Logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <vector>
#include <mutex>

#include <Suscan/Compat.h>
#include <sigutils/log.h>

namespace Suscan {
Expand Down

0 comments on commit ea65fd6

Please sign in to comment.