From 41cf063931a6d818ba66b95283392ac8a6e48022 Mon Sep 17 00:00:00 2001 From: Björn Persson Date: Wed, 13 Feb 2013 23:23:53 +0100 Subject: Added a convenient and flexible build system. --- build_system_log.gpr | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) (limited to 'build_system_log.gpr') diff --git a/build_system_log.gpr b/build_system_log.gpr index b0d6dd7..df98c7f 100644 --- a/build_system_log.gpr +++ b/build_system_log.gpr @@ -1,37 +1,32 @@ --- Use this project file to compile System_Log into a shared library. --- Copyright 2012 B. Persson, Bjorn@Rombobeorn.se +-- 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 "directories"; +with "comfignat.gpr"; -project Build_System_Log is +library project Build_System_Log is Version := "1.2"; - Destdir := external("DESTDIR", ""); - - for Library_Name use "adasyslog"; - for Library_Kind use "relocatable"; - for Library_Version use "libadasyslog.so." & Version; - for Library_Src_Dir use Destdir & Directories.Includedir & "/adasyslog"; - for Library_Dir use Destdir & Directories.Libdir; - for Library_ALI_Dir use Destdir & Directories.Libdir & "/adasyslog"; - - -- Put the binder files for different architectures in subdirectories where - -- they won't conflict with each other. - for Object_Dir use "obj/" & Directories.Hardware_Platform; + 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. + -- pass -a automatically. (Fixed in GPRbuild 2012.) package Binder is for Default_Switches ("Ada") use ("-a"); end Binder; -- cgit v1.2.3