cemu-vcpkg/toolsrc/include/vcpkg/postbuildlint.h

14 lines
386 B
C
Raw Normal View History

2016-09-18 20:50:08 -07:00
#pragma once
#include <vcpkg/build.h>
#include <vcpkg/packagespec.h>
#include <vcpkg/vcpkgpaths.h>
2016-09-18 20:50:08 -07:00
2017-01-05 14:14:11 -08:00
namespace vcpkg::PostBuildLint
2016-09-18 20:50:08 -07:00
{
size_t perform_all_checks(const PackageSpec& spec,
const VcpkgPaths& paths,
const Build::PreBuildInfo& pre_build_info,
const Build::BuildInfo& build_info);
2017-01-05 14:14:11 -08:00
}