mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
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
14 lines
347 B
Text
14 lines
347 B
Text
project Construct is
|
|
|
|
for Languages use ("ada");
|
|
for Source_Dirs use ("src");
|
|
for Object_Dir use "obj";
|
|
for Library_Name use "excelwriter";
|
|
for Library_Dir use "lib";
|
|
for Library_Kind use "static";
|
|
|
|
package Builder is
|
|
for Default_Switches ("ada") use ("-gnatf", "-gnatws", "-O2");
|
|
end Builder;
|
|
|
|
end Construct;
|