-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaws.gpr
46 lines (36 loc) · 948 Bytes
/
gaws.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
--
-- The author disclaims copyright to this source code. In place of
-- a legal notice, here is a blessing:
--
-- May you do good and not evil.
-- May you find forgiveness for yourself and forgive others.
-- May you share freely, not taking more than you give.
--
-- GAWS GPR project file
--
with "AWS";
with "../DK8543/dk8543_core.gpr";
with "../DK8543/dk8543_aws.gpr";
project GAWS is
for Languages use ("Ada");
for Source_Dirs use ("source/");
for Object_Dir use "object/";
for Exec_Dir use "binary/";
for Main use ("gaws_program.adb");
for Create_Missing_Dirs use "true";
package Builder is
for Default_Switches ("Ada") use
("-g",
"-O2",
"-gnatf",
"-gnatwa",
"-gnatwj",
"-gnatw.x",
"-gnat2012",
"-gnaty",
"-gnatyM99"
);
for Executable ("gaws_program.adb")
use "gaws";
end Builder;
end GAWS;