CMake/Source/cmEndIfCommand.cxx

26 lines
936 B
C++
Raw Normal View History

2001-04-20 01:39:03 +04:00
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
2002-01-21 23:30:43 +03:00
Copyright (c) 2002 Insight Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
2001-04-27 16:01:17 +04:00
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
2001-04-20 01:39:03 +04:00
=========================================================================*/
#include "cmEndIfCommand.h"
#include "cmCacheManager.h"
2002-09-13 16:18:13 +04:00
bool cmEndIfCommand::InitialPass(std::vector<std::string> const&)
2001-04-20 01:39:03 +04:00
{
2002-09-10 18:16:50 +04:00
this->SetError("An ENDIF command was found outside of a proper IF ENDIF structure. Or its arguments did not match the opening IF command.");
return false;
2001-04-20 01:39:03 +04:00
}