2001-04-11 22:59:02 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 22:59:02 +04: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-04-11 22:59:02 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 23:30:43 +03:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCustomCommand.h"
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand()
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2006-01-09 22:40:31 +03:00
|
|
|
m_Used = false;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
|
|
|
|
m_Output(r.m_Output),
|
|
|
|
m_Depends(r.m_Depends),
|
|
|
|
m_CommandLines(r.m_CommandLines),
|
2006-02-08 18:58:36 +03:00
|
|
|
m_Comment(r.m_Comment),
|
|
|
|
m_WorkingDirectory(r.m_WorkingDirectory)
|
2003-06-03 18:30:23 +04:00
|
|
|
{
|
2006-01-09 22:40:31 +03:00
|
|
|
m_Used = false;
|
2003-06-03 18:30:23 +04:00
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand(const char* output,
|
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommandLines& commandLines,
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* comment, const char* workingDirectory):
|
2005-02-22 18:32:44 +03:00
|
|
|
m_Output(output?output:""),
|
|
|
|
m_Depends(depends),
|
|
|
|
m_CommandLines(commandLines),
|
2006-02-08 18:58:36 +03:00
|
|
|
m_Comment(comment?comment:""),
|
|
|
|
m_WorkingDirectory(workingDirectory?workingDirectory:"")
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2006-01-09 22:40:31 +03:00
|
|
|
m_Used = false;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetOutput() const
|
2001-04-11 22:59:02 +04:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
return m_Output.c_str();
|
|
|
|
}
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2006-02-08 18:58:36 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetWorkingDirectory() const
|
|
|
|
{
|
|
|
|
if(m_WorkingDirectory.size() == 0)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return m_WorkingDirectory.c_str();
|
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<std::string>& cmCustomCommand::GetDepends() const
|
|
|
|
{
|
|
|
|
return m_Depends;
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
2003-06-04 21:42:42 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const cmCustomCommandLines& cmCustomCommand::GetCommandLines() const
|
|
|
|
{
|
|
|
|
return m_CommandLines;
|
|
|
|
}
|
2003-06-04 21:42:42 +04:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetComment() const
|
2003-06-04 21:42:42 +04:00
|
|
|
{
|
2005-02-22 18:32:44 +03:00
|
|
|
return m_Comment.c_str();
|
2003-06-04 21:42:42 +04:00
|
|
|
}
|