summaryrefslogtreecommitdiff
path: root/src/charon-tkm/build_common.gpr
blob: 102f6b7a27739845d3fa2eafac571c778dd42adb (plain)
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
with "tkmrpc_client";
with "tkmrpc_server-ees";

project Build_Common is

   for Source_Dirs use ();

   Obj_Dir := external ("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;