// file : bpkg/pkg-clean.hxx -*- C++ -*- // license : MIT; see accompanying LICENSE file #ifndef BPKG_PKG_CLEAN_HXX #define BPKG_PKG_CLEAN_HXX #include #include #include #include namespace bpkg { inline int pkg_clean (const pkg_clean_options& o, cli::group_scanner& args) { return pkg_command ("clean", o, "" /* cmd_variant */, o.recursive (), o.immediate (), o.all (), o.all_pattern (), false /* package_cwd */, true /* allow_host_type */, args); } } #endif // BPKG_PKG_CLEAN_HXX