Files
xmlada/tests/schema/schema_test.gpr
Fabien Chouteau 512a7fc92d Rename shared.gpr into xmlada_shared.gpr
For the same reason as the external variables, shared.gpr can be a
source of conflict between different projects. For instance with AWS.

This change has no impact on the installation since shared.gpr is not
provided in the installation.

Part of T715-030.

Change-Id: Ie0ac01a23c34981b75055fbe8a45db9cc50a581f
2020-08-07 19:30:24 +02:00

23 lines
584 B
Plaintext

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;