mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 16:39:01 +08:00
7bdf189a92
The triplet is "run" and vcpkg observes the environment. Previously, the environment was deduced by the triplet's name
13 lines
373 B
C++
13 lines
373 B
C++
#pragma once
|
|
#include "PackageSpec.h"
|
|
#include "VcpkgPaths.h"
|
|
#include "vcpkg_Build.h"
|
|
|
|
namespace vcpkg::PostBuildLint
|
|
{
|
|
size_t perform_all_checks(const PackageSpec& spec,
|
|
const VcpkgPaths& paths,
|
|
const Build::PreBuildInfo& pre_build_info,
|
|
const Build::BuildInfo& build_info);
|
|
}
|