diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-06 10:40:57 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-06 10:40:57 +0000 |
commit | 5c94c0dc65c17599419076890d5ae243656087bd (patch) | |
tree | ad06a04bf2d5c7b5b962784f36f8f4c897320e98 /gcc/ada/prj-ext.ads | |
parent | d3ac8b3a5c0c76eba7ad2f6c0d00bfabf6cddabd (diff) | |
download | gcc-5c94c0dc65c17599419076890d5ae243656087bd.tar.gz |
2007-04-20 Vincent Celier <celier@adacore.com>
* prj.adb (Project_Empty): Gives default value for new component
Libgnarl_Needed
* prj-attr.ads: Minor reformatting
* prj-env.ads, prj-env.adb (For_All_Object_Dirs): Register object
directory using the untouched casing.
(For_All_Source_Dirs): Idem.
* prj-ext.ads, prj-ext.adb (Search_Directories): New table to record
directories specified with switches -aP.
(Add_Search_Project_Directory): New procedure
(Initialize_Project_Path): Put the directories in table
Search_Directories in the project search path.
(Initialize_Project_Path): For VMS, transform into canonical form the
project path.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125442 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/prj-ext.ads')
-rw-r--r-- | gcc/ada/prj-ext.ads | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ada/prj-ext.ads b/gcc/ada/prj-ext.ads index c0114ce2e08..c8ffaef81c0 100644 --- a/gcc/ada/prj-ext.ads +++ b/gcc/ada/prj-ext.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2000-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 2000-2007, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -29,6 +29,12 @@ package Prj.Ext is + procedure Add_Search_Project_Directory (Path : String); + -- Add a directory to the project path. Directories added with this + -- procedure are added in order after the current directory and before + -- the path given by the environment variable GPR_PROJECT_PATH. A value + -- of "-" will remove the default project directory from the project path. + function Project_Path return String; -- Return the current value of the project path, either the value set -- during elaboration of the package or, if procedure Set_Project_Path has |