File: schema_test.gpr

package info (click to toggle)
libxmlada 25.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,212 kB
  • sloc: ada: 78,068; sh: 3,310; makefile: 394; xml: 111; python: 39
file content (22 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
with "../../xmlada_shared";
with "xmlada_schema";
with "xmlada_input";

project Schema_Test is

   for Main use
     ("testschema.adb", "test_date_time.adb",
      "testnumbers.adb", "testdomschema.adb", "schematest.adb",
      "cleanup_schema.adb");

   for Object_Dir use "obj";
   package Builder  renames XmlAda_Shared.Builder;

   package Compiler is
      for Switches ("Ada") use
         XmlAda_Shared.Compiler'Switches ("Ada") & ("-gnat05");
   end Compiler;
   package Binder   renames XmlAda_Shared.Binder;
   package Linker renames XmlAda_Shared.Linker;

end Schema_Test;