You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ada-chip/ada_chip.gpr

23 lines
573 B
Plaintext

with "config/adachip_config.gpr";
project Ada_Chip is
for Source_Dirs use ("src/", "config/");
for Object_Dir use "obj/" & Adachip_Config.Build_Profile;
for Create_Missing_Dirs use "True";
for Exec_Dir use "bin";
for Main use ("ada_chip.adb");
package Compiler is
for Default_Switches ("Ada") use Adachip_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 Ada_Chip;