Files
Nicolas Setton d3959e2ec6 Solidify the .adc mechanism and add protections
Make the .adc systematic, and add protection against
pragma Import and the use of machine code.
2018-07-22 18:51:13 -04:00

15 lines
282 B
Plaintext

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;