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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,11936ac6f9ea8db1,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!x25g2000prf.googlegroups.com!not-for-mail From: Zircona Newsgroups: comp.lang.ada Subject: gnat project "include file" Date: Mon, 7 Dec 2009 10:27:54 -0800 (PST) Organization: http://groups.google.com Message-ID: <4e8ce175-17da-414d-ba32-57406d23831a@x25g2000prf.googlegroups.com> NNTP-Posting-Host: 207.96.208.130 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1260210474 24619 127.0.0.1 (7 Dec 2009 18:27:54 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 7 Dec 2009 18:27:54 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: x25g2000prf.googlegroups.com; posting-host=207.96.208.130; posting-account=L2OIDgoAAADl39HpVekxroCzfBjplVXp User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322),gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:8336 Date: 2009-12-07T10:27:54-08:00 List-Id: HI! I got a projet which are multiple project.. Some of them have dependency to the other. Is there a way to change the with command to used an environment variable? E.g. I have a project call electrics.gpr: with "..\..\..\acsys_common\dist\script\acsys_common.gpr" project electrics is end electrics; I would like something like with External ("ACSYS_COMMON_SCRIPT") & "/acsys_common.gpr" project electrics is end electrics; Is there a way to do this? Thanks!