project GtkAda_Gnome is type Gtkada_Kind_Type is ("static", "relocatable"); Gtkada_Kind : Gtkada_Kind_Type := external ("LIBRARY_TYPE", "static"); for Source_Dirs use ("../../include/gtkada/"); for Library_Kind use Gtkada_Kind; case Gtkada_Kind is when "static" => for Library_Name use "gnomeada"; when "relocatable" => for Library_Name use "gnomeada"; end case; for Library_Dir use "../gtkada/" & Project'Library_Kind; case Gtkada_Kind is when "static" => for Library_Options use ( ); when "relocatable" => for Library_Options use ( ); end case; for Externally_Built use "true"; package Linker is for Linker_Options use Project'Library_Options; end Linker; end GtkAda_Gnome;