blob: df98c7fcd0584eaf44b893b947e279d2ac9ed090 (
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
29
30
31
32
33
34
|
-- project file to compile System_Log into a shared library
-- 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.
with "comfignat.gpr";
library project Build_System_Log is
Version := "1.2";
for Library_Name use "adasyslog";
for Library_Kind use "dynamic";
for Library_Version use "libadasyslog.so." & Version;
for Library_Interface use ("System_Log");
for Object_Dir use Comfignat.Objdir;
for Library_Src_Dir use Comfignat.Stage_Includedir & "/adasyslog";
for Library_Dir use Comfignat.Stage_Libdir;
for Library_ALI_Dir use Comfignat.Stage_Libdir & "/adasyslog";
package Compiler is
for Default_Switches ("Ada") use ("-gnato");
end Compiler;
-- Ensure that the shared library will be initialized. GPRbuild 2010 doesn't
-- pass -a automatically. (Fixed in GPRbuild 2012.)
package Binder is
for Default_Switches ("Ada") use ("-a");
end Binder;
end Build_System_Log;
|