Files
xmlada/tests/schema/multiple_xsd/default.gpr
Emmanuel Briot 3fbca59487 Add support for preloading multiple XSD files and reuse them
O930-031

XSD files with no namespace information cannot be mixed into the
same XML_Grammar, or they will conflict with each other. The
solution is therefore to preload each of them into its own XML_Grammar,
and then let the validating parser chose that grammar dynamically
by overriding the new primitive operation Parse_Grammar.

Change-Id: I337d09259c6b2b18d9b91b4ded847f7f8dcd6eab
2015-10-13 15:18:30 +02:00

11 lines
241 B
Plaintext

with "xmlada";
project Default is
for Main use ("validate.adb");
package Binder is
for Switches ("Ada") use ("-E", "-g");
end Binder;
package Compiler is
for Switches ("Ada") use ("-g");
end Compiler;
end Default;