build_charon.gpr 529 B

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