TP-programmation-imperative/tp09/tp09.gpr
2023-06-10 21:03:54 +02:00

19 lines
383 B
Plaintext
Executable file

project TP09 is
for Main use ("exemple_vecteurs_creux.adb", "test_vecteurs_creux.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 TP09;