forked from GIBIS-UNIFESP/BIAL-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBialGUI.pro
More file actions
72 lines (60 loc) · 1.29 KB
/
BialGUI.pro
File metadata and controls
72 lines (60 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#-------------------------------------------------
#
# Project created by QtCreator 2015-09-12T11:52:54
#
#-------------------------------------------------
QT += core gui printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = BialGUI
TEMPLATE = app
include(../bial/bial.pri)
include(gdcm.pri)
SOURCES += \
thirdParty/qcustomplot.cpp \
tool.cpp \
defaulttool.cpp \
segmentationtool.cpp
SOURCES += \
controller.cpp \
controlswidget.cpp \
dicomdir.cpp \
displayformat.cpp \
gdcm.cpp \
graphicsscene.cpp \
guiimage.cpp \
imageviewer.cpp \
imagewidget.cpp \
main.cpp\
mainwindow.cpp \
segmentationwidget.cpp \
thumbnail.cpp \
thumbswidget.cpp \
HEADERS += \
thirdParty/qcustomplot.h \
tool.h \
defaulttool.h \
segmentationtool.h
HEADERS += \
controller.h \
controlswidget.h \
dicomdir.h \
displayformat.h \
gdcm.h \
graphicsscene.h \
guiimage.h \
imageviewer.h \
imagewidget.h \
mainwindow.h \
segmentationwidget.h \
thumbnail.hpp \
thumbswidget.h \
viewerinterface.h \
FORMS += \
controlswidget.ui \
imagewidget.ui \
mainwindow.ui \
segmentationwidget.ui \
thumbswidget.ui \
RESOURCES += \
qrs/resources.qrc
CONFIG += c++11