2001-03-20 21:20:59 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-03-20 21:20:59 +03:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmSourceGroup.h"
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmSourceGroup::cmSourceGroup(const char* name, const char* regex): m_Name(name)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
this->SetGroupRegex(regex);
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::SetGroupRegex(const char* regex)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
2003-07-23 23:32:54 +04:00
|
|
|
if(regex)
|
|
|
|
{
|
|
|
|
m_GroupRegex.compile(regex);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_GroupRegex.compile("^$");
|
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
}
|
2003-07-23 23:32:54 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::AddGroupFile(const char* name)
|
|
|
|
{
|
|
|
|
m_GroupFiles.insert(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmSourceGroup::GetName() const
|
|
|
|
{
|
|
|
|
return m_Name.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceGroup::MatchesRegex(const char* name)
|
2001-03-20 21:20:59 +03:00
|
|
|
{
|
|
|
|
return m_GroupRegex.find(name);
|
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
bool cmSourceGroup::MatchesFiles(const char* name)
|
|
|
|
{
|
|
|
|
std::set<cmStdString>::const_iterator i = m_GroupFiles.find(name);
|
|
|
|
if(i != m_GroupFiles.end())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2001-03-20 21:20:59 +03:00
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmSourceGroup::AssignSource(const cmSourceFile* sf)
|
2001-04-27 22:51:43 +04:00
|
|
|
{
|
2003-06-03 18:30:23 +04:00
|
|
|
m_SourceFiles.push_back(sf);
|
2001-04-27 22:51:43 +04:00
|
|
|
}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles() const
|
|
|
|
{
|
|
|
|
return m_SourceFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<const cmSourceFile*>& cmSourceGroup::GetSourceFiles()
|
|
|
|
{
|
|
|
|
return m_SourceFiles;
|
|
|
|
}
|