-- Use this project file to compile the test milter of the Ada Milter API. -- Copyright 2013 B. Persson, Bjorn@Rombobeorn.se -- -- This project file is free software: you can redistribute it and/or modify it -- under the terms of the GNU General Public License version 3, as published -- by the Free Software Foundation. with "milter_api"; with "system_log"; project Build_Test_Milter is for Main use ("test_milter"); for Languages use ("Ada"); package Compiler is for Default_Switches ("Ada") use ("-g", "-gnato", "-Wall", "-Wextra"); end Compiler; package Binder is for Default_Switches ("Ada") use ("-E"); end Binder; end Build_Test_Milter;