blob: b3b47cc7762a2c11546b161f4600fd408f66b4cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
|