Ada_Drivers_Library/boards/stm32f746_discovery_sfp.gpr

25 lines
724 B
Plaintext

aggregate library project Stm32F746_Discovery_SFP is
Board := "stm32f746disco";
RTS_Profile := "ravenscar-sfp";
type Build_Type is ("Debug", "Production");
Build : Build_Type := external ("PLATFORM_BUILD", "Production");
for Target use "arm-eabi";
for Runtime ("Ada") use RTS_Profile & "-" & Board;
Obj_Suffix := Board & "/" & RTS_Profile & "/" & Build;
for Library_Name use Board;
for Library_Dir use "lib/" & Obj_Suffix;
for external ("Obj_Suffix") use Obj_Suffix;
for external ("RTS_Profile") use RTS_Profile;
for Project_Path use
(Project'Project_Dir, Project'Project_Dir & "..");
for Project_Files use ("stm32f746_discovery/board.gpr");
end Stm32F746_Discovery_SFP;