File: gnade_sqlite3_example_installed.gpr

package info (click to toggle)
gnade 1.6.2-8
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,220 kB
  • ctags: 847
  • sloc: ada: 40,154; sh: 4,124; sql: 3,590; makefile: 1,372; xml: 120; awk: 29
file content (27 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
-- 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;