From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=1.0 required=3.0 tests=BAYES_40,FORGED_GMAIL_RCVD, FREEMAIL_FROM,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Received: by 2002:ac8:5ad2:0:b0:35c:dd5e:e8b7 with SMTP id d18-20020ac85ad2000000b0035cdd5ee8b7mr21146265qtd.625.1664259248643; Mon, 26 Sep 2022 23:14:08 -0700 (PDT) X-Received: by 2002:ad4:5944:0:b0:4ad:7802:c35a with SMTP id eo4-20020ad45944000000b004ad7802c35amr19908745qvb.84.1664259248480; Mon, 26 Sep 2022 23:14:08 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!news.misty.com!border-2.nntp.ord.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 26 Sep 2022 23:14:08 -0700 (PDT) In-Reply-To: Injection-Info: google-groups.googlegroups.com; posting-host=2a01:e0a:810:89e0:108a:57be:2c88:512d; posting-account=6yLzewoAAABoisbSsCJH1SPMc9UrfXBH NNTP-Posting-Host: 2a01:e0a:810:89e0:108a:57be:2c88:512d References: User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <6df294fb-c493-4998-bc2e-a253ac79b04fn@googlegroups.com> Subject: Re: Working folders for a project From: Emmanuel Briot Injection-Date: Tue, 27 Sep 2022 06:14:08 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:64431 List-Id: > project My_Sdc is > for Source_Dirs use ("Source Files"); > for Object_Dir use "Object Files"; > for Main use ("my_sdc.adb"); > end My_Sdc; > Project --> Build and Run --> My_SDC.adb results in this error message: Hello, It has been years since I last used and develop GNAT Visual Studio, so I can't really help you. But a hint might be the casing discrepency between the project file (my_sdbc.adb all lower cases) and the menu (My_SDC.adb). Maybe you are not, in effect, loading that project file, but another one ? If I remember right, Studio will load a default project if you do not load one explicitly, and it might well be using "obj" as the object directory, which is a frequent convention. Emmanuel