summaryrefslogtreecommitdiff
path: root/src/server/gf-server.cabal
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-08-14 09:06:26 +0000
committerbjorn <bjorn@bringert.net>2008-08-14 09:06:26 +0000
commita7aa8fb9812a204f0a1a984cb1d4c727761490ff (patch)
tree4fc793d703114d2ce84920b28ae2430cc6ed341b /src/server/gf-server.cabal
parent77270a010a0b453e9a84c3e62db7cfd22e49d55d (diff)
Added first version of the GF FastCGI server.
Diffstat (limited to 'src/server/gf-server.cabal')
-rw-r--r--src/server/gf-server.cabal21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/server/gf-server.cabal b/src/server/gf-server.cabal
new file mode 100644
index 000000000..f6104e481
--- /dev/null
+++ b/src/server/gf-server.cabal
@@ -0,0 +1,21 @@
+name: gf-server
+version: 1.0
+cabal-version: >= 1.2
+build-type: Simple
+license: GPL
+license-file: LICENSE
+synopsis: FastCGI Server for Grammatical Framework
+
+executable gf.fcgi
+ build-depends: base,
+ old-time,
+ unix,
+ directory,
+ gf,
+ cgi,
+ fastcgi,
+ json,
+ utf8-string
+ main-is: MainFastCGI.hs
+ other-modules:
+ FastCGIUtils