Ignore .g files (grammar).
[SXSI/xpathcomp.git] / configure
1 #!/usr/bin/env ocaml
2
3 #directory "utils";;
4 #use "conf.ml";;
5
6 Conf.start ();;
7
8 Conf.check_prog "C compiler" "gcc --version";;
9 Conf.check_prog "C++ compiler" "g++ --version";;
10 let _,version, _ = Conf.prog "Ocaml bytecode compiler" "ocamlc -version";;
11 Conf.check "Ocaml version >= 3.11.0" Conf.version version (fun c -> c >= (3,11,0));;
12 Conf.check_prog ~required:false "Ocaml native compiler" "ocamlopt -version";;
13 Conf.check_prog "ocamlbuild" "ocamlbuild -version";;
14 Conf.check_prog "ocamlfind" "ocamlfind printconf";;
15 Conf.check_prog "pkg-config" "pkg-config --version";;
16
17 Conf.check_prog "camlp4" "ocamlfind query camlp4";;
18 Conf.check_prog "ulex" "ocamlfind query ulex";;
19 Conf.check_prog "expat" "ocamlfind query expat";;
20
21 Conf.check "bp" (Conf.absolute) ("%s/../bp/libbp.a") (Sys.file_exists);;
22 Conf.check "libcds" (Conf.absolute) ("%s/../libcds/lib/libcds.a") (Sys.file_exists);;
23 Conf.check "XMLTree" (Conf.absolute) ("%s/../XMLTree/libXMLTree.a") (Sys.file_exists);;
24 Conf.check "TextCollection" (Conf.absolute) ("%s/../TextCollection/libTextCollection.a") (Sys.file_exists);;
25
26
27 let libs_I= [
28     Conf.absolute "-I%s/../bp";
29     Conf.absolute "-I%s/../libcds/includes";
30     Conf.absolute "-I%s/../XMLTree";
31     Conf.absolute "-I%s/../TextCollection";
32     Conf.absolute "-I%s/..";
33      ]
34
35 let libs_L = [
36     Conf.absolute "-L%s/../bp";
37     Conf.absolute "-L%s/../libcds/lib";
38     Conf.absolute "-L%s/../XMLTree";
39     Conf.absolute "-L%s/../TextCollection";
40     Conf.absolute "-L%s/..";
41    ]
42
43 (* Order is relevant *)
44 let libs_l = [
45      "-lXMLTree";
46      "-lTextCollection";
47      "-lbp";
48      "-lcds"
49 ]
50
51 let _,ocamlI,_ = Conf.exec "ocamlc -where";;
52 let ocamlI = [ "-I" ^ ocamlI ];;
53
54 Conf.def_str "cxx_cmd" "g++";;
55
56 Conf.def_list "cxx_includes" (libs_I @ ocamlI);;
57 Conf.def_list "cxx_lpaths" libs_L;;
58 Conf.def_list "cxx_libs" libs_l;;
59
60
61
62 Conf.finish ();;