TP-programmation-imperative/tp_gps/tp_gps.gpr

19 lines
366 B
Plaintext
Raw Normal View History

2023-06-10 19:03:54 +00:00
project TP_GPS is
for Main use ("premier_programme.adb", "specifier_et_tester.adb");
package Builder is
for Default_Switches ("ada") use ("-s");
end Builder;
package Compiler is
for Default_Switches ("ada") use ("-gnatwa");
end Compiler;
package Binder is
for Default_Switches ("ada") use ("-E");
end Binder;
end TP_GPS;