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
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmSourceGroup_h
|
|
|
|
#define cmSourceGroup_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2003-06-23 22:10:12 +04:00
|
|
|
#include <cmsys/RegularExpression.hxx>
|
|
|
|
|
2002-03-04 22:14:41 +03:00
|
|
|
class cmSourceFile;
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
/** \class cmSourceGroup
|
|
|
|
* \brief Hold a group of sources as specified by a SOURCE_GROUP command.
|
|
|
|
*
|
2003-07-23 23:32:54 +04:00
|
|
|
* cmSourceGroup holds a regular expression and a list of files. When
|
|
|
|
* local generators are about to generate the rules for a target's
|
|
|
|
* files, the set of source groups is consulted to group files
|
|
|
|
* together. A file is placed into the last source group that lists
|
|
|
|
* the file by name. If no group lists the file, it is placed into
|
|
|
|
* the last group whose regex matches it.
|
2001-03-20 21:20:59 +03:00
|
|
|
*/
|
|
|
|
class cmSourceGroup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmSourceGroup(const char* name, const char* regex);
|
|
|
|
~cmSourceGroup() {}
|
|
|
|
|
2003-07-23 23:32:54 +04:00
|
|
|
/**
|
|
|
|
* Set the regular expression for this group.
|
|
|
|
*/
|
|
|
|
void SetGroupRegex(const char* regex);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a file name to the explicit list of files for this group.
|
|
|
|
*/
|
|
|
|
void AddGroupFile(const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the name of this group.
|
|
|
|
*/
|
|
|
|
const char* GetName() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the given name matches this group's regex.
|
|
|
|
*/
|
|
|
|
bool MatchesRegex(const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the given name matches this group's explicit file list.
|
|
|
|
*/
|
|
|
|
bool MatchesFiles(const char* name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assign the given source file to this group. Used only by
|
|
|
|
* generators.
|
|
|
|
*/
|
|
|
|
void AssignSource(const cmSourceFile* sf);
|
2003-06-03 18:30:23 +04:00
|
|
|
|
|
|
|
/**
|
2003-07-23 23:32:54 +04:00
|
|
|
* Get the list of the source files that have been assigned to this
|
|
|
|
* source group.
|
2003-06-03 18:30:23 +04:00
|
|
|
*/
|
2003-07-23 23:32:54 +04:00
|
|
|
const std::vector<const cmSourceFile*>& GetSourceFiles() const;
|
|
|
|
std::vector<const cmSourceFile*>& GetSourceFiles();
|
2003-06-03 18:30:23 +04:00
|
|
|
|
2001-03-20 21:20:59 +03:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* The name of the source group.
|
|
|
|
*/
|
|
|
|
std::string m_Name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The regular expression matching the files in the group.
|
|
|
|
*/
|
2003-06-23 22:10:12 +04:00
|
|
|
cmsys::RegularExpression m_GroupRegex;
|
2001-03-20 21:20:59 +03:00
|
|
|
|
|
|
|
/**
|
2003-07-23 23:32:54 +04:00
|
|
|
* Set of file names explicitly added to this group.
|
|
|
|
*/
|
|
|
|
std::set<cmStdString> m_GroupFiles;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Vector of all source files that have been assigned to
|
|
|
|
* this group.
|
2001-03-20 21:20:59 +03:00
|
|
|
*/
|
2003-06-03 18:30:23 +04:00
|
|
|
std::vector<const cmSourceFile*> m_SourceFiles;
|
2001-03-20 21:20:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|