Files
gnatstudio/share/default.gpr
Boulanger 4d1bb6d8a5 Add comment in readonly.gpr and default.gpr...
... about how to override them.

For eng/ide/gnatstudio!750
2025-01-14 09:02:28 +00:00

15 lines
578 B
Plaintext

-- This is GNAT Studio's "Default" project. This file, default.gpr, is copied
-- from <gnatstudio install>/share/gnatstudio/default.gpr when GNAT Studio is
-- opened in a writable directory that does not contain any other project
-- files. A different, customized default.gpr may be used by placing it in one
-- of the directories specified by the GNATSTUDIO_CUSTOM_PATH environment
-- variable. See the GNAT Studio User's Guide for more information.
project Default is
package Compiler is
for Switches ("Ada") use ("-g", "-O2");
end Compiler;
end Default;