vcpkg/toolsrc/include/vcpkg/postbuildlint.h
Cengizhan Pasaoglu 0dcc11ac22
[vcpkg] Use more forward declarations rather than definitions (#13623)
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-10-08 22:31:21 -07:00

21 lines
495 B
C++

#pragma once
#include <vcpkg/fwd/build.h>
#include <vcpkg/fwd/vcpkgpaths.h>
#include <vcpkg/base/files.h>
namespace vcpkg
{
struct PackageSpec;
}
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,
const fs::path& port_dir);
}