move folders around

This commit is contained in:
jacekpoz 2024-03-22 11:43:36 +01:00
parent 4b0b0186f2
commit ab5bee5594
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
4 changed files with 5 additions and 5 deletions

View file

@ -3,16 +3,16 @@ with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
package Module is
function gcd(a : Natural; b : Natural) return Natural;
function factorial(n : Natural) return Natural;
type Result is record
resultExists : Boolean;
n : Integer;
m : Integer;
end record;
function factorial(n : Natural) return Natural;
function gcd(a : Natural; b : Natural) return Natural;
function diophantine(a : Integer; b : Integer; c : Integer) return Result;
end Module;

View file

@ -3,7 +3,7 @@ project Zad2 is
Impl : Impl_Type := external ("impl", "iter");
for Main use ("main");
for Source_Dirs use ("src", "src/" & Impl);
for Source_Dirs use ("src", Impl);
for Object_Dir use "target";
end Zad2;