jpp/lab1/zad4/zad4.gpr

15 lines
356 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";
package Builder is
for Executable ("main.c") use "z4";
end Builder;
end Zad4;