Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
MPIBR-tushevg committed Dec 20, 2018
1 parent 0b671f0 commit 3630935
Show file tree
Hide file tree
Showing 23 changed files with 1,013 additions and 0 deletions.
67 changes: 67 additions & 0 deletions archive/BrainATUMtome.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#-------------------------------------------------
#
# Project created by QtCreator 2018-06-19T12:10:34
#
#-------------------------------------------------

QT += core gui serialport

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = BrainATUMtome
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0


SOURCES += \
main.cpp \
mainwindow.cpp \
driverepos.cpp \
driverserialport.cpp \
driversyringe.cpp \
drivermicrotome.cpp \
videoproducer.cpp \
videoconverter.cpp \
videoviewer.cpp \
videowriter.cpp \
loggerevents.cpp

HEADERS += \
mainwindow.h \
driverepos.h \
driverserialport.h \
driversyringe.h \
drivermicrotome.h \
videoproducer.h \
videoconverter.h \
videoviewer.h \
videowriter.h \
loggerevents.h

FORMS += \
mainwindow.ui


win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../libs/opencv/lib/ -lopencv_world340
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../libs/opencv/lib/ -lopencv_world340d

INCLUDEPATH += $$PWD/../libs/opencv/include
DEPENDPATH += $$PWD/../libs/opencv/include



win32: LIBS += -L$$PWD/../libs/epos/lib/ -lEposCmd64

INCLUDEPATH += $$PWD/../libs/epos/include
DEPENDPATH += $$PWD/../libs/epos/include

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions archive/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();

return a.exec();
}
Loading

0 comments on commit 3630935

Please sign in to comment.