-
Notifications
You must be signed in to change notification settings - Fork 2
/
MasterSim-session.pro
63 lines (52 loc) · 1.81 KB
/
MasterSim-session.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
# Project for MasterSim session and all its libraries
TEMPLATE=subdirs
# SUBDIRS lists all subprojects
SUBDIRS += MasterSim \
MasterSimulator \
MasterSimulatorUI \
BlockMod \
IBK \
IBKMK \
minizip \
TiCPP \
FMUTestMath003Part1 \
FMUTestMath003Part2 \
FMUTestMath003Part3 \
FMUTestLotkaVolterraPrey \
FMUTestLotkaVolterraPredator \
FourRealInputVars
win32|macx {
SUBDIRS += zlib
zlib.file = externals/zlib/zlib.pro
}
# where to find the sub projects
#MasterSimulator.file = MasterSimulator/MasterSimulator.pro
#MasterSim.file = MasterSim/MasterSim.pro
#MasterSimulatorUI.file = MasterSimulatorUI/MasterSimulatorUI.pro
BlockMod.file = externals/BlockMod/BlockMod.pro
IBK.file = externals/IBK/IBK.pro
IBKMK.file = externals/IBKMK/IBKMK.pro
minizip.file = externals/minizip/minizip.pro
TiCPP.file = externals/TiCPP/TiCPP.pro
FMUTestMath003Part1.file = TestFMUs/Math003Part1/Math003Part1.pro
FMUTestMath003Part2.file = TestFMUs/Math003Part2/Math003Part2.pro
FMUTestMath003Part3.file = TestFMUs/Math003Part3/Math003Part3.pro
FMUTestLotkaVolterraPrey.file = TestFMUs/LotkaVolterraPrey/LotkaVolterraPrey.pro
FMUTestLotkaVolterraPredator.file = TestFMUs/LotkaVolterraPredator/LotkaVolterraPredator.pro
FourRealInputVars.file = TestFMUs/FourRealInputVars/FourRealInputVars.pro
# dependencies
MasterSim.depends = IBK IBKMK TiCPP minizip
win32|macx {
MasterSim.depends += zlib
minizip.depends += zlib
}
IBKMK.depends = IBK
BlockMod.depends = IBK
TiCPP.depends = IBK
MasterSimulator.depends = MasterSim IBK IBKMK TiCPP minizip
MasterSimulatorUI.depends = MasterSim BlockMod IBK IBKMK TiCPP minizip
FMUTestMath003Part1.depends = MasterSimulator
FMUTestMath003Part2.depends = MasterSimulator
FMUTestMath003Part3.depends = MasterSimulator
FMUTestLotkaVolterraPrey.depends = MasterSimulator
FMUTestLotkaVolterraPredator.depends = MasterSimulator