37e379365d
The Zip-Ada library is written entirely in Ada, allowing compression operations without any OS-dependent external calls on streams and files. Approved by: bapt/culot (mentors, implicit)
9 lines
228 B
Text
9 lines
228 B
Text
project ZipAda is
|
|
|
|
for Languages use ("ada");
|
|
for Source_Dirs use ("../../include/zip-ada");
|
|
for Library_Name use "zip-ada";
|
|
for Library_Dir use "../../lib/zip-ada";
|
|
for Externally_Built use "true";
|
|
|
|
end ZipAda;
|