blob: 4cab080639449c3d754dd34dd202c26c248ae1f1 [file] [log] [blame]
Roger Meier9a3a5642013-04-27 23:09:40 +02001Name: tutorial
2Version: 1.0
3OASISFormat: 0.3
4Synopsis: OCaml Tutorial example
5Authors: Apache Thrift Developers <dev@thrift.apache.org>
6License: Apache-2.0
7Homepage: http://thrift.apache.org
8BuildTools: ocamlbuild
9Plugins: META (0.3),
10 DevFiles (0.3)
11
12Library tutorial_thrift
13 Path: gen-ocaml
14 FindlibName: tutorial_thrift
15 buildTools: ocamlbuild
16 BuildDepends: threads,thrift
17 Modules: Calculator,Shared_consts,Tutorial_consts,SharedService,Shared_types,Tutorial_types
18 XMETARequires: threads
19
20Executable CalcClient
21 Path: .
22 MainIs: CalcClient.ml
23 Build$: true
24 CompiledObject: best
25 BuildDepends: thrift, tutorial_thrift, threads
26
27Executable CalcServer
28 Path: .
29 MainIs: CalcServer.ml
30 Build$: true
31 CompiledObject: best
32 BuildDepends: thrift, tutorial_thrift, threads