jpp/zad5/zad5.gpr
jacekpoz 26a7b3d447
general improvements
including rust arg taking, rust feature work and changing the name of
the executable in ada
2024-03-22 13:09:09 +01:00

15 lines
349 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";
package Builder is
for Executable ("main.adb") use "z5";
end Builder;
end Zad5;