mirror of
https://github.com/AdaCore/aunit.git
synced 2026-02-12 13:03:25 -08:00
30 lines
625 B
Plaintext
30 lines
625 B
Plaintext
with "aunit.gpr";
|
|
|
|
project Sample is
|
|
|
|
for Languages use ("Ada");
|
|
for Source_Dirs use ("./");
|
|
for Object_Dir use "./";
|
|
for Exec_Dir use "./";
|
|
for Main use ("harness.adb");
|
|
|
|
package Builder is
|
|
for Default_Switches ("ada") use ("-g", "-gnatQ");
|
|
for Executable ("harness.adb") use "harness";
|
|
end Builder;
|
|
|
|
package Linker is
|
|
for Default_Switches ("ada") use ("-g");
|
|
end Linker;
|
|
|
|
package Compiler is
|
|
for Default_Switches ("ada") use ("-gnatf", "-g");
|
|
end Compiler;
|
|
|
|
package Binder is
|
|
for Default_Switches ("ada") use ("-E", "-static");
|
|
end Binder;
|
|
|
|
end Sample;
|
|
|