jpp/zad4/zad4.gpr
2024-03-22 11:44:03 +01:00

11 lines
271 B
Text

project Zad4 is
type Impl_Type is ("iter", "rec");
Impl : Impl_Type := external ("impl", "iter");
for Languages use ("ada", "c");
for Main use ("main.c");
for Source_Dirs use ("src", "include", Impl);
for Object_Dir use "target";
end Zad4;