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=-0.0 required=3.0 tests=BAYES_40,FREEMAIL_FROM, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Received: by 2002:a05:620a:254f:b0:6cf:9b54:11dd with SMTP id s15-20020a05620a254f00b006cf9b5411ddmr5833329qko.55.1664247042184; Mon, 26 Sep 2022 19:50:42 -0700 (PDT) X-Received: by 2002:ae9:e114:0:b0:6ce:33c9:5cc2 with SMTP id g20-20020ae9e114000000b006ce33c95cc2mr16228348qkm.388.1664247041988; Mon, 26 Sep 2022 19:50:41 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!border-1.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 19:50:41 -0700 (PDT) Injection-Info: google-groups.googlegroups.com; posting-host=2001:8004:1131:c9a2:19ac:ab55:7058:d2ee; posting-account=q18aiAoAAADbiIPIlD5R8oYVGhuoBvVA NNTP-Posting-Host: 2001:8004:1131:c9a2:19ac:ab55:7058:d2ee User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Working folders for a project From: Rick Duley Injection-Date: Tue, 27 Sep 2022 02:50:42 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:64429 List-Id: It is my practice to load my software in the folder 'C:\' on my PC but to do my work in a separate disc partition 'D:\'. I have created a new Project deploying it in D:\Ada Programming. I specified the Project Name and Main Name as My_SDC. My_SDC reads 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 All is successful and placed the relevant files where I expect them to be. Project --> Build and Run --> My_SDC.adb results in this error message: [2022-09-27 10:45:00] Error while trying to execute D:\Ada Programming\obj\my_sdc.exe: not an executable Something is looking for a folder called D:\Ada Programming\obj which does not exist. How do I get it to look in the right place?