From mboxrd@z Thu Jan 1 00:00:00 1970 X-Received: by 2002:ac8:6195:0:b0:41c:b944:e9a8 with SMTP id kq21-20020ac86195000000b0041cb944e9a8mr216118qtb.0.1700188237507; Thu, 16 Nov 2023 18:30:37 -0800 (PST) X-Received: by 2002:a17:90a:558c:b0:283:98d1:89ee with SMTP id c12-20020a17090a558c00b0028398d189eemr190004pji.0.1700188237214; Thu, 16 Nov 2023 18:30:37 -0800 (PST) Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!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: Thu, 16 Nov 2023 18:30:36 -0800 (PST) Injection-Info: google-groups.googlegroups.com; posting-host=82.96.63.52; posting-account=ACEctQoAAAD3d42JSpp6_fpg88BhdFDo NNTP-Posting-Host: 82.96.63.52 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2b586484-be9c-47ce-bcba-c67b62048e65n@googlegroups.com> Subject: After redesigning my Poject I have the following Projectfile: From: Petter Injection-Date: Fri, 17 Nov 2023 02:30:37 +0000 Content-Type: text/plain; charset="UTF-8" Xref: news.eternal-september.org comp.lang.ada:65857 List-Id: with "..\..\..\..\GNAT\2021\share\gpr\gnatcoll.gpr"; with "../Utilities/utilities.gpr"; project Ugroups is type Build_Kind is ("static", "relocatable", "static-pic"); for Object_Dir use "obj"; for Main use ("main.adb"); GPR_BUILD : Build_Kind := external ("GPR_BUILD"); package Compiler is for Switches ("ada") use ("-g"); end Compiler; package Linker is for Switches ("ada") use ("-g"); end Linker; package Ide is for Vcs_Kind use "git"; end Ide; case GPR_BUILD is when "static" => for Source_Dirs use ("src"); when "relocatable" => for Source_Dirs use ("src"); when "static-pic" => for Source_Dirs use ("src); end case; end Ugroups; When trying to build All Iget the following error: 2023-11-17 02:59:24] Could not locate executable on path: . [2023-11-17 02:59:24] process exited with status -1, elapsed time: 00.41s Any Suggestions?