summaryrefslogtreecommitdiff
path: root/lib/bsdutil/bsdutil.gpr
blob: bf60c4a2108e8d92e65fe5f050d4604e27913080 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;