blob: 381f32a75735c7335185131a235c159a48b245df [file] [log] [blame]
David Reiss68f8c382010-01-11 19:13:18 +00001Name: ThriftTutorial
2Version: 0.1.0
3Cabal-Version: >= 1.2
4License: Apache2
5Category: Foreign
6Build-Type: Simple
7Synopsis: Thrift Tutorial library package
8
9Executable HaskellServer
10 Main-is: HaskellServer.hs
11 Hs-Source-Dirs:
12 ., ../gen-hs/
13 Build-Depends:
14 base >=4, network, ghc-prim, containers, Thrift
15 ghc-options:
16 -fglasgow-exts
17 Extensions:
18 DeriveDataTypeable
19
20Executable HaskellClient
21 Main-is: HaskellClient.hs
22 Hs-Source-Dirs:
23 ., ../gen-hs/
24 Build-Depends:
25 base >=4, network, ghc-prim, containers, Thrift
26 ghc-options:
27 -fglasgow-exts
28 Extensions:
29 DeriveDataTypeable