mirror of
https://github.com/AdaCore/OPAVES.git
synced 2026-02-12 12:43:36 -08:00
27 lines
687 B
Plaintext
27 lines
687 B
Plaintext
with "test_OPAVES_MkI.gpr";
|
|
with "gnattest_common.gpr";
|
|
|
|
project Test_Driver is
|
|
|
|
for Origin_Project use "../OPAVES_MkI.gpr";
|
|
|
|
for Target use Gnattest_Common'Target;
|
|
|
|
for Runtime ("Ada") use Gnattest_Common'Runtime ("Ada");
|
|
|
|
for Languages use ("Ada");
|
|
for Main use ("test_runner.adb");
|
|
for Exec_Dir use ".";
|
|
|
|
package Builder renames Gnattest_Common.Builder;
|
|
package Linker renames Gnattest_Common.Linker;
|
|
package Binder renames Gnattest_Common.Binder;
|
|
package Compiler renames Gnattest_Common.Compiler;
|
|
|
|
package Ide renames test_OPAVES_MkI.Ide;
|
|
|
|
package GNATtest is
|
|
for GNATTest_Mapping_File use "gnattest.xml";
|
|
end GNATtest;
|
|
|
|
end Test_Driver; |