-
Notifications
You must be signed in to change notification settings - Fork 2
/
alice.gpr
30 lines (24 loc) · 895 Bytes
/
alice.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
-------------------------------------------------------------------------------
--
-- ALICE - Adventures for Learning and Inspiring Coding Excellence
-- Copyright (c) 2023 Francesc Rocher <francesc.rocher@gmail.com>
-- SPDX-License-Identifier: MIT
--
-------------------------------------------------------------------------------
with "config/alice_config.gpr";
project Alice is
for Source_Dirs use ("src/**", "config/");
for Object_Dir use "obj/" & Alice_Config.Build_Profile;
for Create_Missing_Dirs use "True";
for Exec_Dir use "bin";
for Main use ("alice.adb");
package Compiler is
for Default_Switches ("Ada") use Alice_Config.Ada_Compiler_Switches;
end Compiler;
package Binder is
for Switches ("Ada") use ("-Es"); -- Symbolic traceback
end Binder;
package Install is
for Artifacts (".") use ("share");
end Install;
end Alice;