| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
- This software is distributed WITHOUT ANY WARRANTY; without even the
- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- See the License for more information.
- ============================================================================*/
- #include "cmTest.h"
- #include "cmSystemTools.h"
- #include "cmake.h"
- #include "cmMakefile.h"
- //----------------------------------------------------------------------------
- cmTest::cmTest(cmMakefile* mf)
- {
- this->Makefile = mf;
- this->OldStyle = true;
- this->Properties.SetCMakeInstance(mf->GetCMakeInstance());
- this->Backtrace = new cmListFileBacktrace;
- this->Makefile->GetBacktrace(*this->Backtrace);
- }
- //----------------------------------------------------------------------------
- cmTest::~cmTest()
- {
- delete this->Backtrace;
- }
- //----------------------------------------------------------------------------
- cmListFileBacktrace const& cmTest::GetBacktrace() const
- {
- return *this->Backtrace;
- }
- //----------------------------------------------------------------------------
- void cmTest::SetName(const char* name)
- {
- if ( !name )
- {
- name = "";
- }
- this->Name = name;
- }
- //----------------------------------------------------------------------------
- void cmTest::SetCommand(std::vector<std::string> const& command)
- {
- this->Command = command;
- }
- //----------------------------------------------------------------------------
- const char *cmTest::GetProperty(const std::string& prop) const
- {
- bool chain = false;
- const char *retVal =
- this->Properties.GetPropertyValue(prop, cmProperty::TEST, chain);
- if (chain)
- {
- return this->Makefile->GetProperty(prop,cmProperty::TEST);
- }
- return retVal;
- }
- //----------------------------------------------------------------------------
- bool cmTest::GetPropertyAsBool(const std::string& prop) const
- {
- return cmSystemTools::IsOn(this->GetProperty(prop));
- }
- //----------------------------------------------------------------------------
- void cmTest::SetProperty(const std::string& prop, const char* value)
- {
- this->Properties.SetProperty(prop, value, cmProperty::TEST);
- }
- //----------------------------------------------------------------------------
- void cmTest::AppendProperty(const std::string& prop,
- const char* value, bool asString)
- {
- this->Properties.AppendProperty(prop, value, cmProperty::TEST, asString);
- }
|