-
Notifications
You must be signed in to change notification settings - Fork 5
/
sweetada.gpr
85 lines (62 loc) · 2.83 KB
/
sweetada.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
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
-------------------------------------------------------------------------------
-- SweetAda GPRbuild project file
--
-- Copyright (C) 2020-2024 Gabriele Galeotti
--
-- This work is licensed under the terms of the MIT License.
-- Please consult the LICENSE.txt file located in the top-level directory.
-------------------------------------------------------------------------------
with "configure";
with "gprbuild_tc";
project SweetAda is
----------------------------------------------------------------------------
-- Definitions
----------------------------------------------------------------------------
for Target use Configure.Toolchain_Name;
for Source_Dirs use Configure.Include_Directories;
for Object_Dir use project'Project_Dir & "/" & Configure.Object_Directory;
for Default_Language use "Ada";
for Main use ("main.adb");
----------------------------------------------------------------------------
-- Naming
----------------------------------------------------------------------------
package Naming renames Gprbuild_Tc.Naming;
----------------------------------------------------------------------------
-- Builder
----------------------------------------------------------------------------
package Builder renames Gprbuild_Tc.Builder;
----------------------------------------------------------------------------
-- Compiler
----------------------------------------------------------------------------
package Compiler renames Gprbuild_Tc.Compiler;
----------------------------------------------------------------------------
-- Binder
----------------------------------------------------------------------------
package Binder renames Gprbuild_Tc.Binder;
----------------------------------------------------------------------------
-- Linker (not used)
----------------------------------------------------------------------------
package Linker is
end Linker;
----------------------------------------------------------------------------
-- Gnatls (not used)
----------------------------------------------------------------------------
package Gnatls is
end Gnatls;
----------------------------------------------------------------------------
-- Clean (not used)
----------------------------------------------------------------------------
package Clean is
end Clean;
----------------------------------------------------------------------------
-- Ide (not used)
----------------------------------------------------------------------------
package Ide is
end Ide;
----------------------------------------------------------------------------
-- Make
----------------------------------------------------------------------------
package Make is
for Makefile use "Makefile.gnatstudio";
end Make;
end SweetAda;