| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- QT += core gui sql axcontainer
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- CONFIG += c++11
- # 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 += \
- GraphicsArrowItem.cpp \
- GraphicsEllipseItem.cpp \
- GraphicsItem.cpp \
- GraphicsItemGroup.cpp \
- GraphicsLineItem.cpp \
- GraphicsPathItem.cpp \
- GraphicsPixmapItem.cpp \
- GraphicsRectItem.cpp \
- GraphicsTextItem.cpp \
- GraphicsTriangleItem.cpp \
- ImageEdit.cpp \
- MainPaintScene.cpp \
- PaintView.cpp \
- ShapeMimeData.cpp \
- WordEdit.cpp \
- drawtool.cpp \
- hmerge.cpp \
- imagecropperlabel.cpp \
- imagecropperdemo.cpp \
- main.cpp \
- mainwindow.cpp \
- mylabel.cpp \
- reporting.cpp \
- sizehandle.cpp \
- vmerge.cpp
- HEADERS += \
- GraphicsArrowItem.h \
- GraphicsEllipseItem.h \
- GraphicsItem.h \
- GraphicsItemGroup.h \
- GraphicsLineItem.h \
- GraphicsPathItem.h \
- GraphicsPixmapItem.h \
- GraphicsRectItem.h \
- GraphicsTextItem.h \
- GraphicsTriangleItem.h \
- ImageEdit.h \
- MainPaintScenee.h \
- PaintView.h \
- ShapeMimeData.h \
- WordEditt.h \
- drawtool.h \
- hmerge.h \
- imagecropperdialog.h \
- imagecropperlabel.h \
- imagecropperdemo.h \
- mainwindow.h \
- mylabel.h \
- preheader.h \
- reporting.h \
- sizehandle.h \
- vmerge.h
- FORMS += \
- ImageEdit.ui \
- PaintWidget.ui \
- WordEdit.ui \
- hmerge.ui \
- mainwindow.ui \
- reporting.ui \
- vmerge.ui
- TRANSLATIONS += \
- handprint_identification_reports_zh_CN.ts
- # Default rules for deployment.
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- !isEmpty(target.path): INSTALLS += target
- RESOURCES += \
- qrc.qrc
- RC_ICONS = logo.ico
|