-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlte.gpr
More file actions
30 lines (22 loc) · 715 Bytes
/
lte.gpr
File metadata and controls
30 lines (22 loc) · 715 Bytes
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
project LTE is
-- Laplace's Tidal Equation solution and optimization/fitting algorithms
for Source_Dirs use (--"src3",
"src");
for Object_Dir use "obj";
for Main use ("enso_opt.adb", "nao_opt.adb", "qbo_opt.adb", "tidal_opt.adb");
package Ide is
for Vcs_Kind use "Git";
end Ide;
package Compiler is
for Switches ("ada") use ("-g", "-gnato");
end Compiler;
package Builder is
for Switches ("ada") use ("-g");
end Builder;
package Linker is
for Switches ("ada") use ("-g", "-Xlinker", "--stack=0x40000000,0x1000");
end Linker;
package Binder is
for Switches ("tidal_opt.adb") use ("-E");
end Binder;
end LTE;