blob: b208667a3de554b9cba927d09811c76fe69d689d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
with "build_common";
project Build_Charon is
for Languages use ("Ada", "C");
for Source_Dirs use ("src/**");
for Main use ("charon-tkm");
for Object_Dir use Build_Common.Obj_Dir;
package Compiler is
for Default_Switches ("ada") use Build_Common.Ada_Compiler_Switches;
for Default_Switches ("c") use Build_Common.C_Compiler_Switches
& "-Werror";
end Compiler;
package Binder is
for Default_Switches ("ada") use Build_Common.Ada_Binder_Switches;
end Binder;
end Build_Charon;
|