mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
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
23 lines
584 B
Plaintext
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;
|