mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 22:59:01 +08:00
30 lines
697 B
C++
30 lines
697 B
C++
#include "pch.h"
|
|
#include "OptBool.h"
|
|
#include "vcpkg_Checks.h"
|
|
|
|
namespace vcpkg::OptBool
|
|
{
|
|
static const std::string UNSPECIFIED_NAME = "unspecified";
|
|
static const std::string ENABLED_NAME = "enabled";
|
|
static const std::string DISABLED_NAME = "disabled";
|
|
Type parse(const std::string& s)
|
|
{
|
|
if (s == UNSPECIFIED_NAME)
|
|
{
|
|
return OptBoolT::UNSPECIFIED;
|
|
}
|
|
|
|
if (s == ENABLED_NAME)
|
|
{
|
|
return OptBoolT::ENABLED;
|
|
}
|
|
|
|
if (s == DISABLED_NAME)
|
|
{
|
|
return OptBoolT::DISABLED;
|
|
}
|
|
|
|
Checks::exit_with_message(VCPKG_LINE_INFO, "Could not convert string [%s] to OptBool", s);
|
|
}
|
|
}
|