TP-programmation-imperative/tp09/tp09.gpr

19 lines
383 B
Plaintext
Raw Permalink Normal View History

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