mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
Move all the */test/ directories to tests/* Move all tests that potentially contain customer code or data to tests/adacore These will be moved to a separate git repository Part of O527-038 git-svn-id: svn+ssh://svn.eu.adacore.com/Dev/trunk/xmlada@240170 936e1b1b-40f2-da11-902a-00137254ae57
23 lines
549 B
Plaintext
23 lines
549 B
Plaintext
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;
|