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 35 36 37 38 39 40 41 42 43 44 45 46 47
|
-- Build file for Aw_Lib.
--
-- author Marcelo Coraça de Freitas <marcelo.batera@gmail.com>
--
-- Repository information:
-- $Date: 2008-02-25 19:47:48 -0300 (Seg, 25 Fev 2008) $
-- $Revision: 234 $
-- $Author: ogro $
with "apq.gpr";
project APQ.Samples is
version := "3.2.0";
type Supported_OS is ("Windows_NT", "GNU/Linux");
target: Supported_OS := external("OS", "GNU/Linux");
for Source_Dirs use ( "." );
for Object_Dir use "obj";
-- LIBRARY
for Library_Dir use "lib";
for Library_Name use "apq-samples";
case target is
when "Windows_NT" =>
for Library_Kind use "dynamic";
when "GNU/Linux" =>
for Library_Kind use "dynamic";
end case;
for Library_Version use "libapq-samples.so." & Version;
package Compiler is
for Default_Switches ("ada") use ("-O2", "-gnat05");
end Compiler;
--package Linker renames APQ.Linker;
end APQ.Samples;
|