comp.lang.ada
 help / color / mirror / Atom feed
From: Petter <petter_fryklund@hotmail.com>
Subject: After redesigning my Poject I have the following Projectfile:
Date: Thu, 16 Nov 2023 18:30:36 -0800 (PST)	[thread overview]
Message-ID: <2b586484-be9c-47ce-bcba-c67b62048e65n@googlegroups.com> (raw)

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?

             reply	other threads:[~2023-11-17  2:30 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-17  2:30 Petter [this message]
2023-11-17  8:13 ` After redesigning my Poject I have the following Projectfile: Nasser M. Abbasi
2023-11-17  8:51 ` Egil H H
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox