-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOrgSimBasic.pro
More file actions
52 lines (50 loc) · 1.58 KB
/
OrgSimBasic.pro
File metadata and controls
52 lines (50 loc) · 1.58 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
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
src/common/myConfig.cc \
src/common/myFiles.cc \
src/common/myRandom.cc \
src/common/mySignal.cc \
src/common/myTimes.cc \
src/compartment.cc \
src/compartment/baseCompartmentNeighborhood.cc \
src/compartment/compartmentNeighborhood.cc \
src/cost/baseCostFunction.cc \
src/cost/costFunction.cc \
src/main/simulator.cc \
src/nucleus.cc \
src/organism.cc \
src/reactions/baseReaction.cc \
src/reactions/extendedMeristemReactions.cc \
src/reactions/extendedMeristemReactionsHelperFunctions.cc \
src/reactions/massAction.cc \
src/solvers/baseSolver.cc \
src/solvers/rungeKutta.cc \
src/species.cc \
src/topology.cc
HEADERS += \
src/common/myConfig.h \
src/common/myFiles.h \
src/common/myRandom.h \
src/common/mySignal.h \
src/common/myTimes.h \
src/common/typedefs.h \
src/compartment.h \
src/compartment/baseCompartmentNeighborhood.h \
src/compartment/compartmentNeighborhood.h \
src/cost/baseCostFunction.h \
src/cost/costFunction.h \
src/nucleus.h \
src/organism.h \
src/reactions/baseReaction.h \
src/reactions/extendedMeristemReactions.h \
src/reactions/extendedMeristemReactionsHelperFunctions.h \
src/reactions/massAction.h \
src/solvers/baseSolver.h \
src/solvers/baseSolver.h \
src/solvers/rungeKutta.h \
src/solvers/rungeKutta.h \
src/species.h \
src/topology.h