Add missing Library_Dir, this project was not used.
[gnadelite.git] / gpr / sqlite3.gpr
blobaf04c34588f3cdf5dd89af93a9efa64addd3a721
1 ------------------------------------------------------------------------------
2 --                               GnadeLite                                  --
3 --                                                                          --
4 --                         Copyright (C) 2006-2009                          --
5 --                      Olivier Ramonat - Pascal Obry                       --
6 --                                                                          --
7 --  This library is free software; you can redistribute it and/or modify    --
8 --  it under the terms of the GNU General Public License as published by    --
9 --  the Free Software Foundation; either version 2 of the License, or (at   --
10 --  your option) any later version.                                         --
11 --                                                                          --
12 --  This library is distributed in the hope that it will be useful, but     --
13 --  WITHOUT ANY WARRANTY; without even the implied warranty of              --
14 --  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       --
15 --  General Public License for more details.                                --
16 --                                                                          --
17 --  You should have received a copy of the GNU General Public License       --
18 --  along with this library; if not, write to the Free Software Foundation, --
19 --  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.          --
20 ------------------------------------------------------------------------------
22 project Sqlite3 is
24    for Source_Dirs use ();
26    for Library_Name use "sqlite3";
27    for Library_Dir use ".";
28    for Library_Kind use "dynamic";
29    for Externally_Built use "true";
31 end Sqlite3;