Rombobjörn

summaryrefslogtreecommitdiff
path: root/build_test_milter.gpr
blob: a36e362d87e7be79a1874976d8269d43807ccd20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- 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 "comfignat.gpr";
with "build_milter_api.gpr";  -- Link to the just compiled library.
with "system_log.gpr";

standard project Build_Test_Milter is

   for Main        use ("test_milter");
   for Source_Dirs use ("test");
   for Object_Dir  use Comfignat.Objdir & "/test";
   for Exec_Dir    use Comfignat.Stage_Bindir;

   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;