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, 3 months ago) by misho
Branches: strongswan, MAIN
CVS tags: v5_9_2p0, v5_8_4p7, HEAD
Strongswan

    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;

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