-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSIUE-Fat-Segmentation-Tool.pro
73 lines (60 loc) · 1.67 KB
/
SIUE-Fat-Segmentation-Tool.pro
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
73
#-------------------------------------------------
#
# Project created by QtCreator 2016-10-26T12:17:54
#
#-------------------------------------------------
QT += core gui opengl xml network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
!macx: CONFIG -= app_bundle
VERSION = 2.0.1.0 # major.minor.patch.build
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
TARGET = "SIUE Fat Segmentation Tool"
TEMPLATE = app
CONFIG(release, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT QT_MESSAGELOGCONTEXT
SOURCES += main.cpp\
mainwindow.cpp \
util.cpp \
niftimage.cpp \
axialslicewidget.cpp \
commands.cpp \
opencv.cpp \
subjectconfig.cpp \
coronalslicewidget.cpp \
numerictype.cpp \
view_axialcoronalhires.cpp \
view_axialcoronallores.cpp \
tracing.cpp \
stacktrace.cpp
HEADERS += mainwindow.h \
application.h \
niftimage.h \
axialslicewidget.h \
commands.h \
opencv.h \
vertex.h \
exception.h \
util.h \
subjectconfig.h \
coronalslicewidget.h \
displayinfo.h \
numerictype.h \
view_axialcoronalhires.h \
view_axialcoronallores.h \
tracing.h \
stacktrace.h
FORMS += mainwindow.ui \
view_axialcoronalhires.ui \
view_axialcoronallores.ui
RESOURCES += \
resources.qrc
contains(QT_ARCH, x86_64) {
message('Building 64-bit binaries')
exists(customx64.pro): include(customx64.pro)
else:exists(custom.pro): include(custom.pro)
else:exists(customx86.pro): include(customx86.pro)
} else:contains(QT_ARCH, i386) {
message('Building 32-bit binaries')
exists(customx86.pro): include(customx86.pro)
else:exists(custom.pro): include(custom.pro)
}