Below is the file 'debian/gnade_sqlite3_example_installed.gpr' from this revision. You can also download the file.

-- Build the sqlite3 example with the installed libraries

with "gnadecommon";
with "gnadesqlite3";
project GNADE_Sqlite3_Example_Installed is

   for Languages use ("Ada");
   for Source_Dirs use ("tmp/sqlite3-example-src");
   for Object_Dir use "tmp/sqlite3-example-obj";

   for Main use ("demo.adb");

   package Compiler is
      Base_Switches :=
        ("-g",
         "-O2",
         "-gnat05",
         "-gnaty",
         "-gnatfno",
         "-gnatwa",
         "-gnatVa");

      for Default_Switches ("Ada") use Base_Switches;

   end Compiler;

end GNADE_Sqlite3_Example_Installed;