You've already forked code_examples_server
mirror of
https://github.com/AdaCore/code_examples_server.git
synced 2026-02-12 12:45:18 -08:00
Make the .adc systematic, and add protection against pragma Import and the use of machine code.
15 lines
282 B
Plaintext
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;
|