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
23 lines
560 B
Plaintext
23 lines
560 B
Plaintext
project Main is
|
|
|
|
for Main use ("hello.adb");
|
|
|
|
package Compiler is
|
|
for Switches ("ada") use ("-g", "-gnatwa", "-gnatQ");
|
|
end Compiler;
|
|
|
|
package Builder is
|
|
for Switches ("ada") use ("-g", "-O0");
|
|
for Global_Compilation_Switches ("Ada") use
|
|
("-gnateT=/export/work/setton/src/ANCR/src/code_examples_server/resources/example/hello_world/tdf");
|
|
end Builder;
|
|
|
|
for Runtime ("Ada") use "ravenscar-sfp-stm32f4";
|
|
for Target use "arm-eabi";
|
|
|
|
package Emulator is
|
|
for Board use "STM32F4";
|
|
end Emulator;
|
|
|
|
end Main;
|