mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 21:00: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
12 lines
253 B
Text
12 lines
253 B
Text
with "excel_writer";
|
|
project Example is
|
|
|
|
for Exec_Dir use "/tmp";
|
|
for Object_Dir use "/tmp";
|
|
for Main use ("excel_out_test.adb");
|
|
|
|
package Compiler is
|
|
for Default_Switches ("ada") use ("-O2", "-gnat05");
|
|
end Compiler;
|
|
|
|
end Example;
|