blob: bfd252193abfde0403c12da4816074c188841cfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
-- Projects that use System_Log should import this file.
-- Copyright 2012 - 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.
#if Directory_GPR'Defined then
with $Directory_GPR;
#end if;
library project System_Log is
for Library_Name use "adasyslog";
for Library_Kind use "dynamic";
for Source_Dirs use ($Includedir & "/adasyslog");
for Library_Dir use $Libdir;
for Library_ALI_Dir use $Libdir & "/adasyslog";
for Externally_Built use "true";
end System_Log;
|