-
Notifications
You must be signed in to change notification settings - Fork 1
/
neuralNetworks.pro
155 lines (145 loc) · 3.68 KB
/
neuralNetworks.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#-------------------------------------------------
#
# Project created by QtCreator 2011-12-06T16:35:55
#
#-------------------------------------------------
VPATH += ../shared
INCLUDEPATH += ../shared
QT += core gui opengl xml svg network printsupport
TARGET = spineCreator
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
glwidget.cpp \
nineml_al_object.cpp \
population.cpp \
rootdata.cpp \
rootlayout.cpp \
nineML_classes.cpp \
projections.cpp \
connection.cpp \
connectionmodel.cpp \
ninemlsortingdialog.cpp \
glconnectionwidget.cpp \
nineml_layout_classes.cpp \
cinterpreter.cpp \
systemobject.cpp \
layoutaliaseditdialog.cpp \
layouteditpreviewdialog.cpp \
vectormodel.cpp \
valuelistdialog.cpp \
brahms_dialog.cpp \
genericinput.cpp \
connectionlistdialog.cpp \
experiment.cpp \
editsimulators.cpp \
propertiesmanager.cpp \
nineml_graphicsitems.cpp \
nineml_alscene.cpp \
gvitems.cpp \
grouptextitems.cpp \
exportimage.cpp \
dotwriter.cpp \
regimegraphicsitem.cpp \
systemmodel.cpp \
undocommands.cpp \
nineml_rootcomponentitem.cpp \
nineml_alview.cpp \
global_classes.cpp \
stringify.cpp \
versionchange_dialog.cpp \
savenetworkimage_dialog.cpp \
generate_dialog.cpp \
versioncontrol.cpp \
commitdialog.cpp \
viewVZlayoutedithandler.cpp \
viewGVpropertieslayout.cpp \
viewELexptpanelhandler.cpp \
qcustomplot.cpp \
logdata.cpp \
aboutdialog.cpp \
projectobject.cpp
HEADERS += mainwindow.h \
glwidget.h \
nineml_al_object.h \
population.h \
rootdata.h \
rootlayout.h \
nineML_classes.h \
projections.h \
stringify.h \
connection.h \
connectionmodel.h \
ninemlsortingdialog.h \
glconnectionwidget.h \
globalHeader.h \
nineml_layout_classes.h \
cinterpreter.h \
systemobject.h \
layoutaliaseditdialog.h \
layouteditpreviewdialog.h \
projections.h \
vectormodel.h \
vectormodel.h \
valuelistdialog.h \
brahms_dialog.h \
genericinput.h \
connectionlistdialog.h \
experiment.h \
editsimulators.h \
propertiesmanager.h \
nineml_graphicsitems.h \
nineml_alscene.h \
gvitems.h \
grouptextitems.h \
exportimage.h \
dotwriter.h \
regimegraphicsitem.h \
systemmodel.h \
undocommands.h \
nineml_rootcomponentitem.h \
nineml_alview.h \
versionchange_dialog.h \
savenetworkimage_dialog.h \
generate_dialog.h \
versioncontrol.h \
commitdialog.h \
viewVZlayoutedithandler.h \
viewGVpropertieslayout.h \
viewELexptpanelhandler.h \
qcustomplot.h \
logdata.h \
aboutdialog.h \
projectobject.h
FORMS += mainwindow.ui \
ninemlsortingdialog.ui \
valuelistdialog.ui \
brahms_dialog.ui \
connectionlistdialog.ui \
editsimulators.ui \
exportimage.ui \
versionchange_dialog.ui \
savenetworkimage_dialog.ui \
generate_dialog.ui \
commitdialog.ui \
aboutdialog.ui
RESOURCES += \
icons.qrc
win32:release{
LIBS += -Lc:/graphviz/lib/release/lib -lgvplugin_core -lgvc -lgraph -lGLU32
INCLUDEPATH += c:/graphviz/include
DEPENDPATH += c:/graphviz/lib/release/lib
}
win32:debug{
LIBS += -Lc:/graphviz/lib/debug/lib -lgvplugin_core -lgvc -lgraph -lGLU32
INCLUDEPATH += c:/graphviz/include
DEPENDPATH += c:/graphviz/lib/debug/lib
}
unix{
LIBS += -L/usr/local/lib/graphviz -L/usr/local/lib/ -lgvplugin_core -lgvc -lgraph
INCLUDEPATH += /usr/local/include/graphviz
INCLUDEPATH += /usr/local/include
DEPENDPATH += /usr/lib/graphviz
}
OTHER_FILES += \
neuralNetworks.pro.user