blob: 180f86560e83a5fd4493638e1da913290cfc3240 [file] [log] [blame]
Roger Meier9a3a5642013-04-27 23:09:40 +02001Name: tutorial
Jens Geyer75cf93e2024-02-04 14:50:37 +01002Version: 0.21.0
Roger Meier9a3a5642013-04-27 23:09:40 +02003OASISFormat: 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