Below is the file 'debian/gnade_sqlite3_ref.gpr' from this revision. You can also download the file.
-- Copyright (c) 2009 Stephen Leake <stephen_leake@stephe-leake.org>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
-- Used in building the sqlite3 demo
project GNADE_Sqlite3_Ref is
type Lib_Type is ("static", "dynamic");
Libtype : Lib_Type := external ("LIBTYPE");
for Languages use ("Ada");
for Source_Dirs use ("../dbi/sqlite3");
for Library_Name use "gnadesqlite3";
for Library_Dir use "tmp";
for Library_ALI_Dir use "tmp/sqlite3-" & Libtype;
for Library_Kind use Libtype;
for Externally_Built use "true";
end GNADE_Sqlite3_Ref;