commandBuildDeps.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27(**************************************************************************) (* *) (* Copyright 2020 OCamlPro & Origin Labs *) (* *) (* All rights reserved. This file is distributed under the terms of the *) (* GNU Lesser General Public License version 2.1, with the special *) (* exception on linking described in the file LICENSE. *) (* *) (**************************************************************************) open Ezcmd.V2 let cmd_name = "build-deps" let action ~args () = let (_p : Types.project) = Build.build ~force_build_deps:true ~build_deps:true ~build:false ~args () in () let cmd = let args, specs = Build.build_args () in EZCMD.sub cmd_name (fun () -> action ~args ()) ~args: specs ~doc: "Install build dependencies only"