]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/charon-tkm/build_charon.gpr
Fixed some typos, courtesy of codespell
[thirdparty/strongswan.git] / src / charon-tkm / build_charon.gpr
1 with "build_common";
2
3 project Build_Charon is
4
5 for Languages use ("Ada", "C");
6 for Source_Dirs use ("src/**");
7 for Main use ("charon-tkm");
8 for Object_Dir use Build_Common.Obj_Dir;
9
10 package Compiler is
11 for Default_Switches ("ada") use Build_Common.Ada_Compiler_Switches;
12 for Default_Switches ("c") use Build_Common.C_Compiler_Switches
13 & "-Werror";
14 end Compiler;
15
16 package Binder is
17 for Default_Switches ("ada") use Build_Common.Ada_Binder_Switches;
18 end Binder;
19
20 end Build_Charon;