blob: 45951956492d9f67c4ce6be76560894cc1bc80b7 (
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
26
|
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",
"-g");
Ada_Compiler_Switches := ("-gnatwale",
"-gnatygAdISuxo",
"-gnata",
"-gnatVa",
"-gnat05",
"-gnatf",
"-fstack-check",
"-gnato",
"-g");
Ada_Binder_Switches := ("-E");
end Build_Common;
|