File: schema_test.gpr

package info (click to toggle)
libxmlada 18-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,324 kB
  • sloc: ada: 32,766; makefile: 480; xml: 111; sh: 43; python: 35
file content (22 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
with "../../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 Shared.Builder;

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

end Schema_Test;