-
Notifications
You must be signed in to change notification settings - Fork 2
/
dynamo_tool.gpr
42 lines (28 loc) · 870 Bytes
/
dynamo_tool.gpr
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
with "dynamo_config";
with "xmlada_dom";
with "utilada_sys";
with "elada";
with "asf";
with "servletada";
with "ado_all";
with "gpr";
project Dynamo_Tool is
type Yes_No is ("yes", "no");
Has_Gpr : Yes_No := "no";
Mains := ("dynamo.adb");
Version := "1.5.0";
Root_Dir := external ("ROOT_DIR", "./");
Exec_Dir := Root_Dir & "/bin";
for Main use Mains;
for Languages use ("Ada");
for Source_Dirs use ("src", "src/model", "src/yaml", "src/gpr");
for Object_Dir use Root_Dir & "/obj";
for Exec_Dir use Root_Dir & "/bin";
package Binder renames Dynamo_Config.Binder;
package Builder renames Dynamo_Config.Builder;
package Compiler renames Dynamo_Config.Compiler;
package Linker renames Dynamo_Config.Linker;
package Install is
for Artifacts (".") use ("config");
end Install;
end Dynamo_Tool;