mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-15 10:09:00 +08:00
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
#include <filesystem>
|
|
#include "expected.h"
|
|
#include "vcpkg_paths.h"
|
|
#include "metrics.h"
|
|
#include "vcpkg_System.h"
|
|
|
|
namespace fs = std::tr2::sys;
|
|
|
|
namespace vcpkg
|
|
{
|
|
expected<vcpkg_paths> vcpkg_paths::create(const fs::path& vcpkg_root_dir)
|
|
{
|
|
std::error_code ec;
|
|
const fs::path canonical_vcpkg_root_dir = fs::canonical(vcpkg_root_dir, ec);
|
|
if (ec)
|
|
{
|
|
return ec;
|
|
}
|
|
|
|
vcpkg_paths paths;
|
|
paths.root = canonical_vcpkg_root_dir;
|
|
|
|
if (paths.root.empty())
|
|
{
|
|
System::println(System::color::error, "Invalid vcpkg root directory: %s", paths.root.string());
|
|
TrackProperty("error", "Invalid vcpkg root directory");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
paths.packages = paths.root / "packages";
|
|
paths.buildtrees = paths.root / "buildtrees";
|
|
paths.downloads = paths.root / "downloads";
|
|
paths.ports = paths.root / "ports";
|
|
paths.installed = paths.root / "installed";
|
|
paths.triplets = paths.root / "triplets";
|
|
|
|
paths.buildsystems = paths.root / "scripts" / "buildsystems";
|
|
paths.buildsystems_msbuild_targets = paths.buildsystems / "msbuild" / "vcpkg.targets";
|
|
|
|
paths.vcpkg_dir = paths.installed / "vcpkg";
|
|
paths.vcpkg_dir_status_file = paths.vcpkg_dir / "status";
|
|
paths.vcpkg_dir_info = paths.vcpkg_dir / "info";
|
|
paths.vcpkg_dir_updates = paths.vcpkg_dir / "updates";
|
|
|
|
paths.ports_cmake = paths.root / "scripts" / "ports.cmake";
|
|
return paths;
|
|
}
|
|
}
|