blob: bf60c4a2108e8d92e65fe5f050d4604e27913080 (
plain) (
tree)
|
|
library project bsdutil extends "template/base.gpr" is
BuildRoot := External ("BUILDROOT");
IncludeDir := External ("PROJ_INCLUDE");
HeaderFile := project'Name & ".h";
for Library_Name use "bsdutil";
for Object_Dir use BuildRoot & "/" & project'Name;
for Library_Dir use BuildRoot & "/lib";
for Library_Standalone use "no";
for Library_Kind use "dynamic";
for Library_Version use "libbsdutil.so.1";
for Symbolic_Link_Supported use "true";
for Library_Partial_Linker use ("");
for Source_Dirs use ("./**", IncludeDir);
for Interfaces use (HeaderFile);
end bsdutil;
|