diff options
author | Björn Persson <bjorn@rombobjörn.se> | 2013-02-13 23:23:53 +0100 |
---|---|---|
committer | Björn Persson <bjorn@rombobjörn.se> | 2013-02-13 23:23:53 +0100 |
commit | 41cf063931a6d818ba66b95283392ac8a6e48022 (patch) | |
tree | aff70df494543ac52eca48f57eb9cc37d852fe6b /system_log.gpr.in | |
parent | 8d23905093ecf9f9e008c189b51714b5a8c2ca08 (diff) |
Added a convenient and flexible build system.
Diffstat (limited to 'system_log.gpr.in')
-rw-r--r-- | system_log.gpr.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/system_log.gpr.in b/system_log.gpr.in new file mode 100644 index 0000000..bfd2521 --- /dev/null +++ b/system_log.gpr.in @@ -0,0 +1,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; |