Exemplo n.º 1
0
void VCProject::addGlobalProperty(const std::string& name, const std::string& value, const std::string& condition)
{
  if (!name.empty())
    m_globalProps[name].push_back(ConditionalValue(value, condition));
}
Exemplo n.º 2
0
void VCProject::addUserMacro(const std::string& name, const std::string& value, const std::string& condition)
{
  if (!name.empty())
    m_userMacros[name].push_back(ConditionalValue(value, condition));
}
Exemplo n.º 3
0
void VCProjectItem::setDefinition(const std::string& name, const std::string& value, const std::string& condition) {
    if (!name.empty())
        m_definitions[name].push_back(ConditionalValue(value, condition));
}