aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-install
blob: aafa367f621ef8aa3997d023343f8cbdbcae4c1a (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
// file      : bpkg/pkg-install -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_INSTALL
#define BPKG_PKG_INSTALL

#include <bpkg/types>
#include <bpkg/forward> // selected_package
#include <bpkg/utility>

#include <bpkg/pkg-command>
#include <bpkg/pkg-install-options>

namespace bpkg
{
  inline int
  pkg_install (const pkg_install_options& o, cli::scanner& args)
  {
    return pkg_command ("install", o, args);
  }
}

#endif // BPKG_PKG_INSTALL