TP-programmation-imperative/td08/td08.gpr

19 lines
347 B
Plaintext
Raw Normal View History

2023-06-10 19:03:54 +00:00
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;