mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:29:01 +08:00
22 lines
498 B
C++
22 lines
498 B
C++
#pragma once
|
|
|
|
#include "filesystem_fs.h"
|
|
#include "PostBuildLint_BuildPolicies.h"
|
|
#include "opt_bool.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, opt_bool_t> policies;
|
|
};
|
|
|
|
BuildInfo read_build_info(const fs::path& filepath);
|
|
}
|