jpp/lab1/zad2/zad2.gpr

14 lines
308 B
Text
Raw Normal View History

2024-03-21 23:14:44 +01:00
project Zad2 is
type Impl_Type is ("iter", "rec");
Impl : Impl_Type := external ("impl", "iter");
for Main use ("main");
2024-03-22 11:43:36 +01:00
for Source_Dirs use ("src", Impl);
2024-03-21 23:14:44 +01:00
for Object_Dir use "target";
package Builder is
for Executable ("main.adb") use "z2";
end Builder;
2024-03-21 23:14:44 +01:00
end Zad2;