From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,8fa98f4202df5e1 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!newsfeed2.dallas1.level3.net!news.level3.com!bloom-beacon.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: gnat Project files Date: Wed, 04 Nov 2009 12:51:28 -0500 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <316f58b2-1151-4124-a416-e0345be66474@x15g2000vbr.googlegroups.com> <2b75c222-406d-45ae-b091-2f7a4047d3ef@p35g2000yqh.googlegroups.com> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1257357080 12152 192.74.137.71 (4 Nov 2009 17:51:20 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Wed, 4 Nov 2009 17:51:20 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:Osp5Y+uZYWFd0EviS6iC3PjGeEo= Xref: g2news2.google.com comp.lang.ada:8965 Date: 2009-11-04T12:51:28-05:00 List-Id: AdaMagica writes: > You can specify an abolute or releative path, or you can use an > environment variable for project file paths. > > with "../Relative_Path/common"; > with "/Absolute_Path/something"; > project Dependent is ... Relative paths are relative to the directory where the project file is, not (necessarily) relative to the current directory where you're running the compiler. - Bob