move folders around
This commit is contained in:
parent
4b0b0186f2
commit
ab5bee5594
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue