From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.swapon.de!2.eu.feeder.erje.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!nzpost2.xs4all.net!news.kpn.nl!not-for-mail Subject: Re: Checking for OS in gnatstudio project file(.gpr) Newsgroups: comp.lang.ada References: <5eeb50d9$0$1208$e4fe514c@news.kpn.nl> <5eec70f6$0$1460$e4fe514c@news.kpn.nl> <821289e0-cdc7-426f-a5c3-6bfc72369266o@googlegroups.com> From: ldries46 Date: Sat, 20 Jun 2020 11:02:58 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-GB Message-ID: <5eedd0c2$0$1438$e4fe514c@news.kpn.nl> NNTP-Posting-Host: 6ddb59ac.news.kpn.nl X-Trace: G=zuu1zKQI,C=U2FsdGVkX19VrmkntOtJR9OP+qSlDtyBAXiUMH+nJMvr5lb8h5ElNJyDMWMo8sHTzC9RVEyJkMWKTsbBgw1UaZHJ+BDJJ4xqOD5uMnEpXtI= X-Complaints-To: abuse@kpn.nl Xref: reader01.eternal-september.org comp.lang.ada:59131 List-Id: Op 19-6-2020 om 18:29 schreef Simon Wright: > Mark Lorenzen writes: > >> Casing of what? Do you e.g. have directories with mixed casing? >> >> It seems that your Object_Dir and Exec_Dir are the same on the two >> platforms. Do you have file names with mixed case? > Casing is an attribute of package Naming. > > It doesn't matter on Windows (or macOS), but it seems to me that if your > compiler is GNAT you might as well go with the flow and make all your > Ada source file names lower case! Not really that hard a mindset to get > into. I didn't correctly understood the way how to use Casing.  That is needed to be in the package Naming. In the meantime I have corrected that and now I it works correctly. No I want to use filenames with a mixed casing because I find then easier to read or to recognize. For instance using a file name of  "Name_Main_CB" is better to recognize (in my opinion) as "name_main_cb" as the file in which the package of the Callbacks of the Initiation part of the main program is written. At the moment I originally posted this point I didn't realized that the standard on Windows is "\" and on Linux "/" although Windows recognizes both. But let us be strict.