stm32-ada/examples/led_flasher/led_flasher_401c_blackpill.gpr

25 lines
716 B
Plaintext

with "../../library/gpr/light_tasking_stm32f401_library.gpr";
project LED_Flasher_401c_BlackPill is
for Languages use("Ada");
for Main use("led_flasher.adb");
for Object_Dir use "objects/401c_blackpill";
for Target use "arm-eabi";
for Runtime("Ada") use "light-tasking-stm32f401";
for Source_Dirs use(".", "../common/401c_blackpill");
package Compiler is
for Default_Switches("Ada") use ("-gnatwa.X", "-gnatQ", "-gnatn", "-O2");
end Compiler;
package Builder is
for Default_Switches("Ada") use ("-ggdb");
end Builder;
package IDE is
for Program_Host use "localhost:4242";
for Communication_Protocol use "remote";
for Connection_Tool use "st-util";
end IDE;
end LED_Flasher_401c_BlackPill;