summaryrefslogtreecommitdiff
path: root/misc/excel-writer/files/construct.gpr
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-03-23 23:50:06 +0000
committerJohn Marino <marino@FreeBSD.org>2014-03-23 23:50:06 +0000
commit4646a092a221635d151cee144cebbed1d8b2fd53 (patch)
tree796694582955e6d58c3dd11e36f6ab20c3819f24 /misc/excel-writer/files/construct.gpr
parentadd new Ada dev port: misc/ini_file_manager (diff)
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
Notes
Notes: svn path=/head/; revision=348905
Diffstat (limited to 'misc/excel-writer/files/construct.gpr')
-rw-r--r--misc/excel-writer/files/construct.gpr14
1 files changed, 14 insertions, 0 deletions
diff --git a/misc/excel-writer/files/construct.gpr b/misc/excel-writer/files/construct.gpr
new file mode 100644
index 000000000000..c5f7cb9d8bbf
--- /dev/null
+++ b/misc/excel-writer/files/construct.gpr
@@ -0,0 +1,14 @@
+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;