73 lines
2.1 KiB
Prolog
73 lines
2.1 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
|
|
|
|
# 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): {
|
|
QMAKE_CFLAGS_DEBUG += -MT
|
|
QMAKE_CXXFLAGS_DEBUG += -MT
|
|
|
|
LIBS += -lwinmm
|
|
LIBS += -lAdvapi32
|
|
LIBS += -lDbghelp
|
|
|
|
LIBS += -L$$PWD/../../v8/v8/win32/release/
|
|
LIBS += -lv8_monolith
|
|
}
|
|
else:win32:CONFIG(release, debug|release): {
|
|
QMAKE_CFLAGS_RELEASE += -MT
|
|
QMAKE_CXXFLAGS_RELEASE += -MT
|
|
|
|
LIBS += -lwinmm
|
|
LIBS += -lAdvapi32
|
|
LIBS += -lDbghelp
|
|
|
|
LIBS += -L$$PWD/../../v8/v8/win32/release/
|
|
LIBS += -lv8_monolith
|
|
}
|
|
else:unix: {
|
|
LIBS += -L$$PWD/../../v8/v8/darwin/release/
|
|
LIBS += -lv8_monolith
|
|
}
|
|
|
|
macx: LIBS += -L$$OUT_PWD/../doric/ -ldoric
|
|
|
|
INCLUDEPATH += $$PWD/../doric
|
|
DEPENDPATH += $$PWD/../doric
|
|
|
|
macx: PRE_TARGETDEPS += $$OUT_PWD/../doric/libdoric.a
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../doric/release/ -ldoric
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../doric/debug/ -ldoric
|
|
|
|
INCLUDEPATH += $$PWD/../doric
|
|
DEPENDPATH += $$PWD/../doric
|
|
|
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../doric/release/libdoric.a
|
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../doric/debug/libdoric.a
|
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../doric/release/doric.lib
|
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../doric/debug/doric.lib
|