2001-04-11 18:59:02 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 18:59:02 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00: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 18:59:02 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-01-21 20:30:43 +00:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-11 18:59:02 +00:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmCustomCommand.h"
|
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand()
|
2001-04-11 18:59:02 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Used = false;
|
2001-04-11 18:59:02 +00:00
|
|
|
}
|
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
|
2006-03-15 16:02:08 +00:00
|
|
|
Output(r.Output),
|
|
|
|
Depends(r.Depends),
|
|
|
|
CommandLines(r.CommandLines),
|
|
|
|
Comment(r.Comment),
|
|
|
|
WorkingDirectory(r.WorkingDirectory)
|
2003-06-03 14:30:23 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Used = false;
|
2003-06-03 14:30:23 +00:00
|
|
|
}
|
2001-04-11 18:59:02 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
cmCustomCommand::cmCustomCommand(const char* output,
|
|
|
|
const std::vector<std::string>& depends,
|
|
|
|
const cmCustomCommandLines& commandLines,
|
2006-03-15 16:02:08 +00:00
|
|
|
const char* comment,
|
2006-03-10 18:06:26 +00:00
|
|
|
const char* workingDirectory):
|
2006-03-15 16:02:08 +00:00
|
|
|
Output(output?output:""),
|
|
|
|
Depends(depends),
|
|
|
|
CommandLines(commandLines),
|
|
|
|
Comment(comment?comment:""),
|
|
|
|
WorkingDirectory(workingDirectory?workingDirectory:"")
|
2001-04-11 18:59:02 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->Used = false;
|
2001-04-11 18:59:02 +00:00
|
|
|
}
|
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetOutput() const
|
2001-04-11 18:59:02 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->Output.c_str();
|
2005-02-22 15:32:44 +00:00
|
|
|
}
|
2001-04-11 18:59:02 +00:00
|
|
|
|
2006-02-08 15:58:36 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetWorkingDirectory() const
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
if(this->WorkingDirectory.size() == 0)
|
2006-02-08 15:58:36 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->WorkingDirectory.c_str();
|
2006-02-08 15:58:36 +00:00
|
|
|
}
|
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const std::vector<std::string>& cmCustomCommand::GetDepends() const
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->Depends;
|
2001-04-11 18:59:02 +00:00
|
|
|
}
|
2003-06-04 17:42:42 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const cmCustomCommandLines& cmCustomCommand::GetCommandLines() const
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->CommandLines;
|
2005-02-22 15:32:44 +00:00
|
|
|
}
|
2003-06-04 17:42:42 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
const char* cmCustomCommand::GetComment() const
|
2003-06-04 17:42:42 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->Comment.c_str();
|
2003-06-04 17:42:42 +00:00
|
|
|
}
|