// file : bpkg/system-package-manager.cxx -*- C++ -*- // license : MIT; see accompanying LICENSE file #include #include namespace bpkg { system_package_manager:: ~system_package_manager () { // vtable } unique_ptr make_system_package_manager (const target_triplet& host, const string& type) { unique_ptr r; if (r == nullptr) { if (!type.empty ()) fail << "unsupported package manager type '" << type << "' for host " << host; } return r; } }