vcpkg/toolsrc/include/vcpkg_Environment.h

18 lines
395 B
C
Raw Normal View History

2016-09-18 20:50:08 -07:00
#pragma once
#include "vcpkg_paths.h"
2017-01-05 14:14:11 -08:00
namespace vcpkg::Environment
2016-09-18 20:50:08 -07:00
{
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);
}
2017-01-05 14:14:11 -08:00
}