Files
Ada_Drivers_Library/examples/accelerometer/accelerometer.gpr
Jerome Lambourg 081ee81675 Refine the reorg of the project files.
This change introduces a library aggregate project at board level, that
ensures that the proper runtime and configuration is used througout the
other projects.
2016-08-12 12:17:50 +02:00

17 lines
435 B
Plaintext

with "../../boards/stm32f407_discovery.gpr";
project Accelerometer extends "../common/common.gpr" is
for Runtime ("Ada") use STM32F407_Discovery'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";
package Linker is
for Default_Switches ("Ada") use ("-Wl,--print-memory-usage");
end Linker;
end Accelerometer;