CMake/Source/cmCustomCommand.cxx

84 lines
2.6 KiB
C++
Raw Normal View History

/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
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.
=========================================================================*/
#include "cmCustomCommand.h"
//----------------------------------------------------------------------------
cmCustomCommand::cmCustomCommand()
{
2006-03-15 19:02:08 +03:00
this->Used = false;
}
//----------------------------------------------------------------------------
cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
2006-03-15 19:02:08 +03:00
Output(r.Output),
Depends(r.Depends),
CommandLines(r.CommandLines),
Comment(r.Comment),
WorkingDirectory(r.WorkingDirectory)
2003-06-03 18:30:23 +04:00
{
2006-03-15 19:02:08 +03:00
this->Used = false;
2003-06-03 18:30:23 +04:00
}
//----------------------------------------------------------------------------
cmCustomCommand::cmCustomCommand(const char* output,
const std::vector<std::string>& depends,
const cmCustomCommandLines& commandLines,
2006-03-15 19:02:08 +03:00
const char* comment,
2006-03-10 21:06:26 +03:00
const char* workingDirectory):
2006-03-15 19:02:08 +03:00
Output(output?output:""),
Depends(depends),
CommandLines(commandLines),
Comment(comment?comment:""),
WorkingDirectory(workingDirectory?workingDirectory:"")
{
2006-03-15 19:02:08 +03:00
this->Used = false;
}
//----------------------------------------------------------------------------
const char* cmCustomCommand::GetOutput() const
{
2006-03-15 19:02:08 +03:00
return this->Output.c_str();
}
2006-02-08 18:58:36 +03:00
//----------------------------------------------------------------------------
const char* cmCustomCommand::GetWorkingDirectory() const
{
2006-03-15 19:02:08 +03:00
if(this->WorkingDirectory.size() == 0)
2006-02-08 18:58:36 +03:00
{
return 0;
}
2006-03-15 19:02:08 +03:00
return this->WorkingDirectory.c_str();
2006-02-08 18:58:36 +03:00
}
//----------------------------------------------------------------------------
const std::vector<std::string>& cmCustomCommand::GetDepends() const
{
2006-03-15 19:02:08 +03:00
return this->Depends;
}
//----------------------------------------------------------------------------
const cmCustomCommandLines& cmCustomCommand::GetCommandLines() const
{
2006-03-15 19:02:08 +03:00
return this->CommandLines;
}
//----------------------------------------------------------------------------
const char* cmCustomCommand::GetComment() const
{
2006-03-15 19:02:08 +03:00
return this->Comment.c_str();
}