// file : bpkg/pkg-clean -*- C++ -*- // copyright : Copyright (c) 2014-2016 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file #ifndef BPKG_PKG_CLEAN #define BPKG_PKG_CLEAN #include #include #include #include namespace bpkg { inline int pkg_clean (const pkg_clean_options& o, cli::scanner& args) { return pkg_command ("clean", o, args); } } #endif // BPKG_PKG_CLEAN