mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
cleaned up the coding style made ivars private etc
This commit is contained in:
@@ -28,9 +28,29 @@
|
||||
class cmTarget
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* is this target a library?
|
||||
*/
|
||||
bool IsALibrary() const { return m_IsALibrary; }
|
||||
bool GetIsALibrary() const { return m_IsALibrary; }
|
||||
void SetIsALibrary(bool f) { m_IsALibrary = f; }
|
||||
|
||||
/**
|
||||
* Get the list of the custom commands for this target
|
||||
*/
|
||||
const std::vector<cmCustomCommand> &GetCustomCommands() const {return m_CustomCommands;}
|
||||
std::vector<cmCustomCommand> &GetCustomCommands() {return m_CustomCommands;}
|
||||
|
||||
/**
|
||||
* Get the list of the source lists used by this target
|
||||
*/
|
||||
const std::vector<std::string> &GetSourceLists() const {return m_SourceLists;}
|
||||
std::vector<std::string> &GetSourceLists() {return m_SourceLists;}
|
||||
|
||||
private:
|
||||
std::vector<cmCustomCommand> m_CustomCommands;
|
||||
bool m_IsALibrary;
|
||||
std::vector<std::string> m_SourceLists;
|
||||
bool m_IsALibrary;
|
||||
};
|
||||
|
||||
typedef std::map<std::string,cmTarget> cmTargets;
|
||||
|
||||
Reference in New Issue
Block a user