19 lines
396 B
Plaintext
Executable file
19 lines
396 B
Plaintext
Executable file
project TP4 is
|
|
|
|
for Main use ("exemple_dates.adb", "exemple_dates_erreurs.adb", "scenario_stock.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 TP4;
|
|
|