11 lines
262 B
Text
11 lines
262 B
Text
project Zad5 is
|
|
type Impl_Type is ("iter", "rec");
|
|
Impl : Impl_Type := external ("impl", "iter");
|
|
|
|
for Languages use ("ada", "c");
|
|
|
|
for Main use ("main.adb");
|
|
for Source_Dirs use ("src", Impl);
|
|
for Object_Dir use "target";
|
|
|
|
end Zad5;
|