19 lines
347 B
Plaintext
Executable file
19 lines
347 B
Plaintext
Executable file
project TD08 is
|
|
|
|
for Main use ("tester_listes.adb");
|
|
|
|
package Builder is
|
|
for Default_Switches ("ada") use ("-s");
|
|
end Builder;
|
|
|
|
package Compiler is
|
|
for Default_Switches ("ada") use ("-gnatwa", "-gnata", "-g");
|
|
end Compiler;
|
|
|
|
package Binder is
|
|
for Default_Switches ("ada") use ("-E");
|
|
end Binder;
|
|
|
|
end TD08;
|
|
|