vcpkg/toolsrc/include/PostBuildLint.h

10 lines
240 B
C
Raw Normal View History

2016-09-18 20:50:08 -07:00
#pragma once
2017-04-03 14:45:00 -07:00
#include "PackageSpec.h"
2017-04-03 16:29:11 -07:00
#include "VcpkgPaths.h"
#include "vcpkg_Build.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::BuildInfo& build_info);
2017-01-05 14:14:11 -08:00
}