From 488d06a9b648c2202a293d700043ace5133acb0f Mon Sep 17 00:00:00 2001 From: silverqx Date: Fri, 7 May 2021 15:29:42 +0200 Subject: [PATCH] removed includepath from models.pri - whitespaces - todo --- NOTES.txt | 7 +++++++ conf.pri.example | 1 - tests/auto/functional/orm/tiny/models/models.pri | 3 --- tests/conf.pri.example | 1 - 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/NOTES.txt b/NOTES.txt index 4281ce81f..fe65ff4e7 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -27,6 +27,13 @@ void deleteModel() return toBase().deleteRow(); } + - add c++20 compiler check, something like: +#ifdef __cplusplus +# if __cplusplus < 201103L && !defined(Q_CC_MSVC) +# error Qt requires a C++11 compiler and yours does not seem to be that. +# endif +#endif + Todo categories: ---------------- diff --git a/conf.pri.example b/conf.pri.example index ce909fe4c..1f622c84d 100644 --- a/conf.pri.example +++ b/conf.pri.example @@ -23,4 +23,3 @@ else:unix { LIBS += -lmysqlclient } - diff --git a/tests/auto/functional/orm/tiny/models/models.pri b/tests/auto/functional/orm/tiny/models/models.pri index 2e0acbec9..d7646b279 100644 --- a/tests/auto/functional/orm/tiny/models/models.pri +++ b/tests/auto/functional/orm/tiny/models/models.pri @@ -1,6 +1,3 @@ -# range-v3 -INCLUDEPATH += $$quote(E:/c/qMedia/vcpkg/installed/x64-windows/include) - INCLUDEPATH += $$PWD SOURCES += \ diff --git a/tests/conf.pri.example b/tests/conf.pri.example index 53216ceab..3c28a430d 100644 --- a/tests/conf.pri.example +++ b/tests/conf.pri.example @@ -13,4 +13,3 @@ else:unix { # range-v3 INCLUDEPATH += $$quote(/home/xyz/vcpkg/installed/x64-linux/include) } -