10 lines
230 B
Text
10 lines
230 B
Text
|
project Zad2 is
|
||
|
type Impl_Type is ("iter", "rec");
|
||
|
Impl : Impl_Type := external ("impl", "iter");
|
||
|
|
||
|
for Main use ("main");
|
||
|
for Source_Dirs use ("src", "src/" & Impl);
|
||
|
for Object_Dir use "target";
|
||
|
|
||
|
end Zad2;
|