// file : bpkg/pkg-clean.hxx -*- C++ -*- // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // 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 */, false /* recursive */, false /* immediate */, o.all (), false /* package_cwd */, args); } } #endif // BPKG_PKG_CLEAN_HXX