diff options
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index eb02bf4..d121c2d 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -40,11 +40,11 @@ with Types; use Types; package Prj is - Default_Ada_Spec_Suffix : Name_Id := No_Name; + Default_Ada_Spec_Suffix : Name_Id; -- The Name_Id for the standard GNAT suffix for Ada spec source file -- name ".ads". Initialized by Prj.Initialize. - Default_Ada_Impl_Suffix : Name_Id := No_Name; + Default_Ada_Impl_Suffix : Name_Id; -- The Name_Id for the standard GNAT suffix for Ada body source file -- name ".adb". Initialized by Prj.Initialize. @@ -366,6 +366,11 @@ package Prj is -- The object directory of this project file. -- Set by Prj.Nmsc.Check_Naming_Scheme. + Exec_Directory : Name_Id := No_Name; + -- The exec directory of this project file. + -- Default is equal to Object_Directory. + -- Set by Prj.Nmsc.Check_Naming_Scheme. + Modifies : Project_Id := No_Project; -- The reference of the project file, if any, that this -- project file modifies. |