19 lines
366 B
Plaintext
Executable file
19 lines
366 B
Plaintext
Executable file
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;
|
|
|