mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 15:11:49 +08:00
20 lines
459 B
C++
20 lines
459 B
C++
#pragma once
|
|
#include "vcpkg_paths.h"
|
|
|
|
namespace vcpkg::Environment
|
|
{
|
|
void ensure_nuget_on_path(const vcpkg_paths& paths);
|
|
|
|
void ensure_git_on_path(const vcpkg_paths& paths);
|
|
|
|
void ensure_cmake_on_path(const vcpkg_paths& paths);
|
|
|
|
inline void ensure_utilities_on_path(const vcpkg_paths& paths)
|
|
{
|
|
ensure_cmake_on_path(paths);
|
|
ensure_git_on_path(paths);
|
|
}
|
|
|
|
const fs::path& get_dumpbin_exe(const vcpkg_paths& paths);
|
|
}
|