File: postgres.gpr

package info (click to toggle)
gnade 1.6.2-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,220 kB
  • ctags: 847
  • sloc: ada: 40,154; sh: 4,124; sql: 3,590; makefile: 1,372; xml: 120; awk: 29
file content (29 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (4)
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
-- $Id: postgres.gpr,v 1.5 2004/03/20 08:30:20 merdmann Exp $
with "../../gnade" ;

project Postgres is

   for Languages use ("Ada");

   for Source_Dirs use (".");
   for Object_Dir use ".";

   package Compiler is
      for Default_Switches ("Ada")
      use ( "-g", GNADE.IncludeOpt);
   end Compiler;

   package Builder is
      for Default_Switches ("Ada")
      use ("-s", "-m", "-g", "-gnatQ", GNADE.IncludeOpt);
   end Builder;

   package Binder is
      for Default_Switches ("Ada") use ("-static");
   end Binder;

   package Linker is
      for Default_Switches ("Ada") use ("-g");
   end Linker;

end Postgres;