aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg_Environment.h
blob: 5d12c8f6cbb0fbcbb1a51b730cfd46ca4e4ff65a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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();
}