aboutsummaryrefslogtreecommitdiff
path: root/bdep/update.hxx
blob: 38d62783b0bc3a4c593d24c1809842998c90e219 (plain)
1
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
28
29
30
31
32
// file      : bdep/update.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BDEP_UPDATE_HXX
#define BDEP_UPDATE_HXX

#include <bdep/types.hxx>
#include <bdep/utility.hxx>

#include <bdep/build.hxx>
#include <bdep/update-options.hxx>

namespace bdep
{
  inline void
  cmd_update (const cmd_update_options& o,
              const shared_ptr<configuration>& c,
              const cstrings& pkgs,
              const strings& cfg_vars)
  {
    run_bpkg (2, o, "update", "-d", c->path, cfg_vars, pkgs);
  }

  inline int
  cmd_update (const cmd_update_options& o, cli::scanner& args)
  {
    return cmd_build (o, &cmd_update, args);
  }
}

#endif // BDEP_UPDATE_HXX