Files

15 lines
282 B
Plaintext
Raw Permalink Normal View History

project Main is
--MAIN_PLACEHOLDER--
package Compiler is
for Switches ("ada") use ("-g");
end Compiler;
package Builder is
for Switches ("ada") use ("-g", "-O0", "-gnata");
for Global_Configuration_Pragmas use "main.adc";
end Builder;
end Main;