vcpkg/toolsrc/include/PostBuildLint.h

13 lines
373 B
C
Raw Normal View History

2016-09-19 11:50:08 +08:00
#pragma once
2017-04-04 05:45:00 +08:00
#include "PackageSpec.h"
2017-04-04 07:29:11 +08:00
#include "VcpkgPaths.h"
#include "vcpkg_Build.h"
2016-09-19 11:50:08 +08:00
2017-01-06 06:14:11 +08:00
namespace vcpkg::PostBuildLint
2016-09-19 11:50:08 +08: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-06 06:14:11 +08:00
}