diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-01-21 13:10:21 +0100 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-01-21 13:10:21 +0100 |
commit | b098f5dc6a447df808ed755a1d6123f9ce7896dc (patch) | |
tree | 4080b60521a1ba5232083e523b6a86857e26ee00 /test/build_test_milter.gpr | |
parent | 638f5166cce43f0d9421a72e3669b13fa0b47567 (diff) |
Added an outline of a test milter.
Diffstat (limited to 'test/build_test_milter.gpr')
-rw-r--r-- | test/build_test_milter.gpr | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/build_test_milter.gpr b/test/build_test_milter.gpr new file mode 100644 index 0000000..6746be3 --- /dev/null +++ b/test/build_test_milter.gpr @@ -0,0 +1,23 @@ +-- 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; |