// 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 #include // selected_package #include #include #include namespace bpkg { inline int pkg_install (const pkg_install_options& o, cli::scanner& args) { return pkg_command ("install", o, args); } } #endif // BPKG_PKG_INSTALL