File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / strongswan / src / charon-tkm / build_charon.gpr
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Jun 3 09:46:45 2020 UTC (4 years ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

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;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>