-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathutilada_conf.gpr
46 lines (31 loc) · 1.53 KB
/
utilada_conf.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
with "utilada_config";
abstract project UtilAda_Conf is
type Yes_No is ("yes", "no");
Version := "2.8.0";
Library_Dir := "lib";
type Xml_Version_Type is ("none", "3", "4");
type Os_Version_Type is ("none", "unix", "windows",
"linux32", "linux64", "win32", "win64", "macos64",
"netbsd32", "netbsd64", "freebsd32", "freebsd64",
"openbsd32", "openbsd64");
-- Moved to UtilAda_Unit project but kept for Alire pins issues.
type Unit_Type is ("none", "ahven-unix", "ahven-windows", "aunit");
Unit : Unit_Type := external ("UTIL_UNIT", "ahven-unix");
type Asm_Version_Type is ("none", "intrinsic", "x86");
Asm_Version : Asm_Version_Type := external ("UTIL_ASM_TYPE", "intrinsic");
Library_Type : UtilAda_Config.Library_Type_Type := external ("UTIL_LIBRARY_TYPE", "static");
Os_Version : Os_Version_Type := external ("UTIL_OS", "linux64");
Xml_Version : Xml_Version_Type := "4";
Has_Curl : UtilAda_Config.Yes_No := "yes";
Has_AWS : UtilAda_Config.Yes_No := "yes";
Has_Xml : UtilAda_Config.Yes_No := "yes";
Has_Lzma : UtilAda_Config.Yes_No := "yes";
-- Enable the use of GNAT symbolic traceback.
Has_Gnat_Traceback : UtilAda_Config.Yes_No := "yes";
Library_Options := "";
Curl_Library_Options := "";
package Builder renames UtilAda_Config.Builder;
package Compiler renames UtilAda_Config.Compiler;
package Ide renames UtilAda_Config.Ide;
package Binder renames UtilAda_Config.Binder;
end UtilAda_Conf;