46 lines
1.3 KiB
Prolog
46 lines
1.3 KiB
Prolog
QT += quick
|
|
|
|
CONFIG += c++14
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
demo/DoricDemoBridge.cpp \
|
|
main.cpp
|
|
|
|
HEADERS += \
|
|
demo/DoricDemoBridge.h
|
|
|
|
RESOURCES += qml.qrc
|
|
QTQUICK_COMPILER_SKIPPED_RESOURCES += qml.qrc
|
|
|
|
# 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 =
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
win32:CONFIG(debug, debug|release): {
|
|
LIBS += -lwinmm
|
|
LIBS += -lAdvapi32
|
|
LIBS += -lDbghelp
|
|
}
|
|
else:win32:CONFIG(release, debug|release): {
|
|
LIBS += -lwinmm
|
|
LIBS += -lAdvapi32
|
|
LIBS += -lDbghelp
|
|
}
|
|
|
|
INCLUDEPATH += $$PWD/../doric
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../binary/doric/release/ -lDoricCore
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../binary/doric/debug/ -lDoricCore
|
|
else:macx: LIBS += -L$$OUT_PWD/../doric -lDoricCore
|