mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 14:59:13 -04:00
XML EZ_Out is a small set of packages intended to aid the creation of XML-formatted output from within Ada programs. It basically wraps the tags and data provided to it with XML syntax and writes them to a user-supplied medium. This medium can be any sort of writable entity, such as a file, a memory buffer, or even a communications link, such as a socket. The only functionality required of the medium is that it supply a meaningful "Put" (for writing a string) and "New_Line" procedure. WWW: http://www.mckae.com/xmlEz.html
14 lines
339 B
Text
14 lines
339 B
Text
project XEZO_Bld is
|
|
|
|
for Languages use ("ada");
|
|
for Source_Dirs use ("mckae");
|
|
for Object_Dir use "obj";
|
|
for Library_Name use "xml_ez_out";
|
|
for Library_Dir use "lib";
|
|
for Library_Kind use "static";
|
|
|
|
package Builder is
|
|
for Default_Switches ("ada") use ("-gnatf", "-gnatws", "-O2");
|
|
end Builder;
|
|
|
|
end XEZO_Bld;
|