-- This project has been generated by GPRINSTALL Pro 17.0w (20150615) (x86_64-apple-darwin15) library project Gnat_Util is type BUILD_KIND is ("static", "relocatable"); BUILD : BUILD_KIND := external("LIBRARY_TYPE", "static"); for Languages use ("Ada", "C"); case BUILD is when "relocatable" => for Source_Dirs use ("../../include/gnat_util/gnat_util.relocatable"); for Library_Dir use "../gnat_util/gnat_util.relocatable"; for Library_Kind use "relocatable"; when "static" => for Source_Dirs use ("../../include/gnat_util/gnat_util.static"); for Library_Dir use "../gnat_util/gnat_util.static"; for Library_Kind use "static"; end case; for Library_Name use "gnat_util"; package Naming is for dot_replacement use "-"; for casing use "lowercase"; case BUILD is when "relocatable" => for body_suffix ("ada") use ".adb"; for body_suffix ("c") use ".c"; for spec_suffix ("ada") use ".ads"; for spec_suffix ("c") use ".h"; when "static" => for body_suffix ("ada") use ".adb"; for body_suffix ("c") use ".c"; for spec_suffix ("ada") use ".ads"; for spec_suffix ("c") use ".h"; end case; end Naming; package Linker is case BUILD is when "relocatable" => null; when "static" => null; end case; end Linker; package Install is for Active use "False"; end Install; for Externally_Built use "True"; type Library_T is ("static", "relocatable"); library_type : library_t := "static"; end Gnat_Util;