stm32-ada/common/gpr/stm32_common.gpr

18 lines
300 B
Plaintext

abstract project STM32_Common is
Build_Path := "../../build/";
for Object_Dir use Build_Path & "/objects";
for Library_Dir use Build_Path & "/library";
package Builder is
for Default_Switches("Ada") use (
"-gnato",
"-O2",
"-gnatW8",
"-ggdb"
);
end Builder;
end STM32_Common;