You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
TEMPLATE = lib
|
|
|
|
|
|
|
|
QT += mvvmcore
|
|
|
|
# Creating a static library is typically more efficient. You can still create a shared library if you want to
|
|
|
|
CONFIG += c++14 static
|
|
|
|
|
|
|
|
TARGET = appLogReaderCore
|
|
|
|
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
AppLogReaderApp.h \
|
|
|
|
LinkedList.h \
|
|
|
|
MainViewModel.h \
|
|
|
|
Node.h \
|
|
|
|
SortedLinkedList.h
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
AppLogReaderApp.cpp \
|
|
|
|
LinkedList.cpp \
|
|
|
|
MainViewModel.cpp \
|
|
|
|
SortedLinkedList.cpp
|
|
|
|
|
|
|
|
RESOURCES += \
|
|
|
|
applogreadercore.qrc
|
|
|
|
|
|
|
|
TRANSLATIONS += applogreader_core_de.ts \
|
|
|
|
applogreader_core_template.ts
|
|
|
|
|
|
|
|
DISTFILES += $$TRANSLATIONS
|
|
|
|
QTMVVM_TS_SETTINGS = settings.xml
|
|
|
|
_never_true_condition: SOURCES += $$files($$PWD/.ts-dummy/*)
|
|
|
|
# Uncomment the following line to automatically generated and update settings translations when building
|
|
|
|
#PRE_TARGETDEPS += qtmvvm-tsgen
|