forked from AdaCore/Ada_Drivers_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBLE_beacon.gpr
More file actions
28 lines (22 loc) · 707 Bytes
/
BLE_beacon.gpr
File metadata and controls
28 lines (22 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
with "../../../boards/MicroBit/microbit_zfp.gpr";
project BLE_Beacon is
for Runtime ("ada") use MicroBit_ZFP'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";
for Create_Missing_Dirs use "True";
package Compiler renames MicroBit_ZFP.Compiler;
package Linker is
for Default_Switches ("Ada") use
MicroBit_ZFP.Linker_Switches &
("-Wl,--print-memory-usage",
"-Wl,--gc-sections");
end Linker;
package Ide is
for Program_Host use ":1234";
for Communication_Protocol use "remote";
for Connection_Tool use "pyocd";
end Ide;
end BLE_Beacon;