vcpkg/toolsrc/include/vcpkg_Environment.h
Alexander Karatarakis ccca198c1b Initial commit
2016-09-18 20:54:03 -07:00

18 lines
406 B
C++

#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);
}
}}