mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 20:19:06 +08:00
22 lines
495 B
C++
22 lines
495 B
C++
#pragma once
|
|
|
|
#include "filesystem_fs.h"
|
|
#include "PostBuildLint_BuildPolicies.h"
|
|
#include "OptBool.h"
|
|
#include "PostBuildLint_LinkageType.h"
|
|
|
|
namespace vcpkg::PostBuildLint
|
|
{
|
|
struct BuildInfo
|
|
{
|
|
static BuildInfo create(std::unordered_map<std::string, std::string> pgh);
|
|
|
|
LinkageType::Type crt_linkage;
|
|
LinkageType::Type library_linkage;
|
|
|
|
std::map<BuildPolicies::Type, OptBoolT> policies;
|
|
};
|
|
|
|
BuildInfo read_build_info(const fs::path& filepath);
|
|
}
|