// file : bpkg/pkg-install.hxx -*- C++ -*- // license : MIT; see accompanying LICENSE file #ifndef BPKG_PKG_INSTALL_HXX #define BPKG_PKG_INSTALL_HXX #include #include // selected_package #include #include #include namespace bpkg { inline int pkg_install (const pkg_install_options& o, cli::group_scanner& args) { return pkg_command ("install", o, "" /* cmd_variant */, o.recursive (), o.immediate (), o.all (), false /* package_cwd */, args); } } #endif // BPKG_PKG_INSTALL_HXX