pro
QT += core gui #printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = BigGraph
TEMPLATE = app
RC_ICONS = 3.ico
DEFINES += QT_DEPRECATED_WARNINGS
include(Dlg/Dlg.pri)
include(Draw/Draw.pri)
include(kqwaitdlg/kqwaitdlg.pri)
include(Slider/Slider.pri)
include(Product.pri)
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../Software/Deve/OpenCV45/opencv/build/x64/vc15/lib/ -lopencv_world450
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../Software/Deve/OpenCV45/opencv/build/x64/vc15/lib/ -lopencv_world450d
INCLUDEPATH += $$PWD/../../../Software/Deve/OpenCV45/opencv/build/include
DEPENDPATH += $$PWD/../../../Software/Deve/OpenCV45/opencv/build/include
RESOURCES += \
res.qrc
pri
FORMS += \
$$PWD/MainWindow.ui
HEADERS += \
$$PWD/MainWindow.h \
$$PWD/MyGraphicsView.h \
$$PWD/MyThread.h
SOURCES += \
$$PWD/MainWindow.cpp \
$$PWD/MyGraphicsView.cpp \
$$PWD/MyThread.cpp \
$$PWD/main.cpp