You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
803 B
39 lines
803 B
TEMPLATE = app
|
|
TARGET = microAnalyzer
|
|
DEPENDPATH += .
|
|
|
|
# OpenCV
|
|
LIBS += -lopencv_core -lopencv_imgproc -lboost_system
|
|
|
|
INCLUDEPATH += .
|
|
|
|
QT += widgets
|
|
QT += xml
|
|
|
|
# Input
|
|
HEADERS += layerrecord.h \
|
|
mainwindow.h \
|
|
project.h \
|
|
projectwizard.h \
|
|
./libs/staticsingleton.h \
|
|
tableformat.h \
|
|
xmlparser.h \
|
|
opencvprocessor.h \
|
|
layercomposer.h \
|
|
customgraphicsview.h
|
|
|
|
|
|
FORMS += mainwindow.ui
|
|
SOURCES += layerrecord.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
project.cpp \
|
|
projectwizard.cpp \
|
|
tableformat.cpp \
|
|
xmlparser.cpp \
|
|
opencvprocessor.cpp \
|
|
layercomposer.cpp \
|
|
customgraphicsview.cpp
|
|
|
|
RC_FILE = microAnalyzer.rc
|