mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 23:01:36 +08:00
15 lines
296 B
C++
15 lines
296 B
C++
#pragma once
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <vcpkg/vcpkgpaths.h>
|
|
|
|
namespace vcpkg::VisualStudio
|
|
{
|
|
std::vector<std::string> get_visual_studio_instances(const VcpkgPaths& paths);
|
|
|
|
std::vector<Toolset> find_toolset_instances_preferred_first(const VcpkgPaths& paths);
|
|
}
|
|
|
|
#endif
|