mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-12 18:07:50 +08:00
e17de99599
All filenames and directories are lowercase. Use dots for namespace separation.
14 lines
386 B
C++
14 lines
386 B
C++
#pragma once
|
|
|
|
#include <vcpkg/build.h>
|
|
#include <vcpkg/packagespec.h>
|
|
#include <vcpkg/vcpkgpaths.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);
|
|
}
|