Compare commits

...

3 Commits

Author SHA1 Message Date
81fd7606bd add interfaces.h 2024-02-28 16:37:46 +01:00
3e2355100a add interfaces.h 2024-02-28 16:37:26 +01:00
6aaee6d464 provide interfaces.h 2024-02-28 16:36:06 +01:00
3 changed files with 2501 additions and 1 deletions

View File

@ -16,6 +16,11 @@ GIT_COMMIT=$$system("git log -1 --format=oneline | cut -d' ' -f1")
EXTENDED_VERSION="$${VERSION}-$${GIT_COMMIT}" EXTENDED_VERSION="$${VERSION}-$${GIT_COMMIT}"
!contains(CONFIG, INCLUDEINTERFACES) {
INCLUDEINTERFACES=/opt/ptu5/opt/DCLibraries/include
}
INCLUDEPATH += plugins $${INCLUDEINTERFACES}
CONFIG += c++17 CONFIG += c++17
DEFINES+=APP_VERSION=\\\"$$VERSION\\\" DEFINES+=APP_VERSION=\\\"$$VERSION\\\"
@ -65,7 +70,8 @@ SOURCES += \
message_handler.cpp message_handler.cpp
HEADERS += \ HEADERS += \
message_handler.h message_handler.h \
plugins/interfaces.h
OTHER_FILES += \ OTHER_FILES += \
ATBDownloadDCJsonFiles.ini ATBDownloadDCJsonFiles.ini

View File

@ -4,6 +4,8 @@
#include <QByteArray> #include <QByteArray>
#include "message_handler.h" #include "message_handler.h"
#include "plugins/interfaces.h"
#if defined (__unix__) || defined (__linux__) #if defined (__unix__) || defined (__linux__)
#include <unistd.h> #include <unistd.h>

2492
plugins/interfaces.h Normal file

File diff suppressed because it is too large Load Diff