You've already forked Ada_Drivers_Library
mirror of
https://github.com/AdaCore/Ada_Drivers_Library.git
synced 2026-02-12 12:26:55 -08:00
30 lines
744 B
Plaintext
30 lines
744 B
Plaintext
with "../../../boards/MicroBit/microbit_zfp.gpr";
|
|
|
|
project Text_Scrolling is
|
|
|
|
for Runtime ("ada") use MicroBit_ZFP'Runtime ("Ada");
|
|
for Target use "arm-eabi";
|
|
for Main use ("main.adb");
|
|
for Languages use ("Ada");
|
|
for Source_Dirs use ("src");
|
|
for Object_Dir use "obj";
|
|
for Create_Missing_Dirs use "True";
|
|
|
|
package Compiler renames MicroBit_ZFP.Compiler;
|
|
|
|
package Linker is
|
|
for Default_Switches ("Ada") use
|
|
MicroBit_ZFP.Linker_Switches &
|
|
("-Wl,--print-memory-usage",
|
|
"-Wl,--gc-sections",
|
|
"-U__gnat_irq_trap");
|
|
end Linker;
|
|
|
|
package Ide is
|
|
for Program_Host use ":1234";
|
|
for Communication_Protocol use "remote";
|
|
for Connection_Tool use "pyocd";
|
|
end Ide;
|
|
|
|
end Text_Scrolling;
|