blob: 877ac7deb527b96cc8817928d7e17ab3b17f5c03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "vcpkg_paths.h"
namespace vcpkg {namespace 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);
}
}}
|