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.
37 lines
1.4 KiB
37 lines
1.4 KiB
2 years ago
|
TEMPLATE = app
|
||
|
|
||
|
QT += quick mvvmquick
|
||
|
CONFIG += c++14
|
||
|
|
||
|
TARGET = appLogReaderQuick
|
||
|
|
||
|
DEFINES += QT_DEPRECATED_WARNINGS
|
||
|
|
||
|
SOURCES += main.cpp
|
||
|
|
||
|
RESOURCES += \
|
||
|
applogreaderquick.qrc
|
||
|
|
||
|
TRANSLATIONS += applogreader_quick_de.ts \
|
||
|
applogreader_quick_template.ts
|
||
|
|
||
|
# Link with core project
|
||
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../appLogReaderCore/release/ -lappLogReaderCore
|
||
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../appLogReaderCore/debug/ -lappLogReaderCore
|
||
|
else:unix: LIBS += -L$$OUT_PWD/../appLogReaderCore/ -lappLogReaderCore
|
||
|
|
||
|
INCLUDEPATH += $$PWD/../appLogReaderCore
|
||
|
DEPENDPATH += $$PWD/../appLogReaderCore
|
||
|
|
||
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/release/libappLogReaderCore.a
|
||
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/debug/libappLogReaderCore.a
|
||
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/release/appLogReaderCore.lib
|
||
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/debug/appLogReaderCore.lib
|
||
|
else:unix: PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/libappLogReaderCore.a
|
||
|
|
||
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
||
|
QML_IMPORT_PATH =
|
||
|
|
||
|
# Additional import path used to resolve QML modules just for Qt Quick Designer
|
||
|
QML_DESIGNER_IMPORT_PATH =
|