-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnmea.gpr
31 lines (27 loc) · 1.06 KB
/
nmea.gpr
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
29
30
31
library project NMEA is
for Languages use ("Ada");
for Source_Dirs use ("src/**");
for Object_Dir use ".obj";
for Library_Name use "nmea";
for Library_Dir use "lib";
package Compiler is
for Driver ("Python") use "";
for Driver ("Makefile") use "";
for Driver ("Project File") use "";
for Default_Switches ("ada") use ("-gnatwa",
"-gnat12",
"-gnatf",
"-gnata",
"-gnatyaABcfhiklnOprstx");
for Switches ("nmea-abstract_application.adb") use Compiler'Default_Switches ("ada") & ("-O2");
end Compiler;
package Binder is
for Default_Switches ("ada") use ("-E");
end Binder;
package Naming is
for Implementation_Suffix ("Python") use ".py";
for Implementation_Suffix ("Makefile") use ".mk";
for Implementation_Exceptions ("Makefile") use ("Makefile");
-- for Implementation_Suffix ("Project File") use ".gpr";
end Naming;
end NMEA;