1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
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;
|