Skip to content

Commit

Permalink
[fix] fix cpp compilateur min version
Browse files Browse the repository at this point in the history
Require cpp17 to compile OpenJournal. Fix the ci/cd for Windows.
  • Loading branch information
bgallois committed Dec 8, 2021
1 parent 21c96f3 commit 37c0ad9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenJournal.pro
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ QMAKE_CXXFLAGS_RELEASE += -O3
QMAKE_LFLAGS_RELEASE -= -O1
QMAKE_LFLAGS_RELEASE -= -O2
QMAKE_LFLAGS_RELEASE += -O3
QMAKE_CXXFLAGS += -std=c++11 -O3 -g
CONFIG += c++11
QMAKE_CXXFLAGS += -std=c++17 -O3 -g
CONFIG += c++17

SOURCES += \
dialog_cloud.cpp \
Expand Down

0 comments on commit 37c0ad9

Please sign in to comment.