1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- QT += quick
- CONFIG += c++11
- SOURCES += \
- Ego.cpp \
- ImageProvider.cpp \
- appmodel.cpp \
- main.cpp
- RESOURCES += qml.qrc
- QML_IMPORT_PATH =
- QML_DESIGNER_IMPORT_PATH =
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- HEADERS += \
- Ego.h \
- ImageProvider.h \
- appmodel.h
- INCLUDEPATH += ../EgoDLL/include/
- LIBS+= -L../x64/debug/ -lEgoDLLd
- QT += quick
- CONFIG += c++11
- SOURCES += \
- Ego.cpp \
- ImageProvider.cpp \
- appmodel.cpp \
- main.cpp
- RESOURCES += qml.qrc
- QML_IMPORT_PATH =
- QML_DESIGNER_IMPORT_PATH =
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- HEADERS += \
- Ego.h \
- ImageProvider.h \
- appmodel.h
- INCLUDEPATH += ../EgoDLL/include/
- LIBS+= -L../x64/debug/ -lEgoDLLd
|