blob: 55dede921f8cc1a54d668bf84efa5d655eb4abd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#pragma once
#include <string>
namespace vcpkg::PostBuildLint
{
enum class ConfigurationType
{
DEBUG = 1,
RELEASE = 2
};
std::string to_string(const ConfigurationType& conf);
}
|