freebsd-ports/misc/excel-writer/files/excel_writer.gpr
John Marino 4646a092a2 Add new Ada port: misc/excel_writer
Excel_Out is a package that can generate basically formatted Excel files.

* Ideal for the automatic production of reports
* Fast: on a HP Mini netbook (Intel Atom, 1.66 GHz), Excel Writer produced
  50 sheets per second where each sheet had 10,000 data cells
* Totally portable and no external library required
* No interation with MS Office software

WWW: http://excel-writer.sourceforge.net
2014-03-23 23:50:06 +00:00

7 lines
272 B
Text

project Excel_Writer is
for Languages use ("ada");
for Library_Name use "excelwriter";
for Source_Dirs use ("../../include/excel_writer");
for Library_Dir use "../../lib/excel_writer";
for Externally_Built use "true";
end Excel_Writer;