mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 03:27:12 +01: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
|