You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
694 B
26 lines
694 B
with "../../../boards/MicroBit/microbit_zfp.gpr";
|
|
|
|
project Jumper 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");
|
|
end Linker;
|
|
|
|
package Ide is
|
|
for Program_Host use ":1234";
|
|
for Communication_Protocol use "remote";
|
|
for Connection_Tool use "pyocd";
|
|
end Ide;
|
|
|
|
end Jumper;
|
|
|
|
|