Refactor xpath parser and ast in a submodule.
[tatoo.git] / myocamlbuild_config.ml
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2013 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (*
17   Time-stamp: <Last modified on 2013-01-30 19:10:05 CET by Kim Nguyen>
18 *)
19
20 let ocaml_inline = "1000";;
21 let include_path = "include";;
22 let src_path = "src";;
23 let ocaml_link = [ ];;
24 let ocamlfind_packages = "unix,ulex,expat,camlp4,camlp4.lib,camlp4.macro";;
25 let cxx_flags = [ "-fno-PIC"; "-std=c++0x"; "-O3" ];;
26 let main_targets = [ "native","src/main.native";
27                      "byte", "src/main.byte" ];;
28 let cstub_lib = [ ];;
29
30 let cxx_cmd = "g++";;
31 let cxx_includes = [ ]
32 let cxx_lpaths = [ ]
33 let cxx_libs = [ ];;
34 let cxx_libs_objects = [];;