Files
strongswan-ext/src/charon-tkm/build_common.gpr
T
Reto Buerki 270b321e97 Implement Ada exception processing
Register a global exception action with the Ada runtime to log uncaught
exceptions to the daemon log and terminate.
2013-03-19 15:23:48 +01:00

26 lines
676 B
Plaintext

with "tkmrpc_client";
with "tkmrpc_server-ees";
project Build_Common is
for Source_Dirs use ();
Obj_Dir := "obj";
C_Compiler_Switches := ("-W",
"-Wall",
"-Wno-unused-parameter");
Ada_Compiler_Switches := ("-gnatwale",
"-gnatygAdISuxo",
"-gnata",
"-gnatVa",
"-gnat05",
"-gnatf",
"-fstack-check",
"-gnato",
"-g");
Ada_Binder_Switches := ("-E");
end Build_Common;