Files
Ada_Drivers_Library/examples/OpenMV2/openmv2_example.gpr
2018-04-27 21:16:40 +02:00

23 lines
546 B
Plaintext

with "../../boards/OpenMV2/openmv2_full";
project OpenMV2_Example is
-- OpenMV2 runtime is derived from smt32f429-disco with
--
-- HSE_Clock_Frequency : constant := 12_000_000;
--
-- in bsp/s-bbopa.ads
for Runtime ("Ada") use OpenMV2_Full'Runtime ("Ada");
for Target use "arm-eabi";
for Source_Dirs use ("src");
for Languages use ("Ada");
for Object_Dir use "obj";
for Main use ("main.adb");
for Create_Missing_Dirs use "True";
package Compiler renames OpenMV2_Full.Compiler;
end OpenMV2_Example;