-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathden.gpr
44 lines (33 loc) · 1.27 KB
/
den.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
with "config/den_config.gpr";
project Den is
for Library_Name use "Den";
for Library_Version use Project'Library_Name & ".so." & Den_Config.Crate_Version;
for Object_Dir use "obj/" & Den_Config.Build_Profile;
for Create_Missing_Dirs use "True";
for Library_Dir use "lib";
type Library_Type_Type is ("relocatable", "static", "static-pic");
Library_Type : Library_Type_Type :=
external ("DEN_LIBRARY_TYPE", external ("LIBRARY_TYPE", "static"));
for Library_Kind use Library_Type;
for Languages use ("Ada", "C++");
OS_Sources := ();
Detect_Windows := external ("SystemRoot", "not_windows");
case Detect_Windows is
when "not_windows" =>
OS_Sources := OS_Sources & ("src/unix/");
when others =>
OS_Sources := OS_Sources &("src/windows/");
end case;
for Source_Dirs use ("src/", "config/") & OS_Sources;
package Compiler is
for Default_Switches ("Ada") use Den_Config.Ada_Compiler_Switches;
for Default_Switches ("C") use ("-g", "-Wall");
for Default_Switches ("C++") use ("-g", "-Wall");
end Compiler;
package Binder is
for Switches ("Ada") use ("-Es"); -- Symbolic traceback
end Binder;
package Install is
for Artifacts (".") use ("share");
end Install;
end Den;