Delete core/config/core_config.gpr

Signed-off-by: gravermistakes <evermoor.a.a@gmail.com>
This commit is contained in:
gravermistakes 2026-07-22 02:13:24 -07:00 committed by GitHub
parent 98baf3fa37
commit a599be95f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,28 +0,0 @@
abstract project Core_Config is
for Source_Dirs use ();
type Yes_No_Type is ("yes", "no");
type Library_Type_Type is ("relocatable", "static", "static-pic");
Library_Type : Library_Type_Type := external ("CORE_LIBRARY_TYPE", "static");
Static_Build : Yes_No_Type := external ("CORE_STATIC_BUILD", "yes");
package Compiler is
for Default_Switches ("Ada") use
("-gnat2022",
"-gnatwa",
"-gnatwe",
"-gnatyyM",
"-gnaty3abcdefhijklmnoprstux",
"-Wall",
"-O2",
"-gnatf",
"-gnatpn");
end Compiler;
package Binder is
for Default_Switches ("Ada") use ("-Es");
end Binder;
end Core_Config;