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;
|