mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:18:59 +08:00
20 lines
447 B
C++
20 lines
447 B
C++
#pragma once
|
|
#include "vcpkg_paths.h"
|
|
|
|
namespace vcpkg::Environment
|
|
{
|
|
const fs::path& get_dumpbin_exe(const vcpkg_paths& paths);
|
|
|
|
struct vcvarsall_and_platform_toolset
|
|
{
|
|
fs::path path;
|
|
std::wstring platform_toolset;
|
|
};
|
|
|
|
const vcvarsall_and_platform_toolset& get_vcvarsall_bat(const vcpkg_paths& paths);
|
|
|
|
const fs::path& get_ProgramFiles_32_bit();
|
|
|
|
const fs::path& get_ProgramFiles_platform_bitness();
|
|
}
|