diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2012-01-08 10:39:41 +0000 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2012-01-08 10:39:41 +0000 |
commit | 526920ed5abdc31c4135fb34fcb617b3cf9320c3 (patch) | |
tree | 6b4c9a7bc35489afa82f3903ef57317bf5556482 /milter_api.gpr | |
parent | 30ab793c01eb86c885f837da6d14c6caa0a86625 (diff) |
Added project files.
Diffstat (limited to 'milter_api.gpr')
-rw-r--r-- | milter_api.gpr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/milter_api.gpr b/milter_api.gpr new file mode 100644 index 0000000..b3b47cc --- /dev/null +++ b/milter_api.gpr @@ -0,0 +1,15 @@ +-- Projects that use the Ada Milter API should import this file. +-- Copyright 2009 - 2012 B. Persson, Bjorn@Rombobeorn.se +-- +-- This library 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 "directories"; +project Milter_API is + for Library_Name use "adamilter"; + for Source_Dirs use (Directories.Includedir & "/adamilter"); + for Library_Dir use Directories.Libdir; + for Library_ALI_Dir use Directories.Libdir & "/adamilter"; + for Externally_Built use "true"; +end Milter_API; |