blob: 0eaa5687ee56e30743e705937aceab52e07874e0 [file] [log] [blame]
Roger Meier9a3a5642013-04-27 23:09:40 +02001Name: tutorial
Jens Geyerc75646a2022-08-30 22:54:32 +02002Version: 0.18.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