use custom command line parser

This commit is contained in:
2025-08-26 14:23:14 +02:00
parent 70d0ffb38d
commit a8fdd29666

View File

@@ -16,11 +16,12 @@ GIT_COMMIT=$$system("git log -1 --format=oneline | cut -d' ' -f1")
EXTENDED_VERSION="$${VERSION}-$${GIT_COMMIT}"
INCLUDEPATH += \
plugins \
$${INCLUDEINTERFACES} \
INCLUDEPATH += plugins \
$${INCLUDEINTERFACES}/ \
$${_PRO_FILE_PWD_}/../common/ \
$${_PRO_FILE_PWD_}/../common/include
CONFIG += c++17
DEFINES+=APP_VERSION=\\\"$$VERSION\\\"
@@ -67,12 +68,14 @@ SOURCES += \
message_handler.cpp \
../common/src/utils_internal.cpp \
../common/src/command.cpp \
../common/src/commandline_parser.cpp \
git_command.cpp
HEADERS += \
message_handler.h \
../common/include/utils_internal.h \
../common/include/command.h \
../common/include/commandline_parser.h \
git_command.h
##########################################################################################