/*========================================================================= 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 PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "cmEndForEachCommand.h" bool cmEndForEachCommand::InvokeInitialPass(std::vector const& args) { if(args.size() < 1 ) { this->SetError("called with incorrect number of arguments"); return false; } // remove any function blockers for this define cmListFileFunction lff; lff.m_Name = "ENDFOREACH"; lff.m_Arguments = args; m_Makefile->RemoveFunctionBlocker(lff); return true; } 12_3 Qt s a cross-platform application framework that is used for developing application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while still being a native application with native capabilities and speed.
summaryrefslogtreecommitdiffstats
path: root/tools/assistant
Commit message (Expand)AuthorAgeFilesLines
* Fixing warnings on GCC... (II)João Abecasis2009-10-071-1/+1
* Removing errors from the configure step...João Abecasis2009-10-072-5/+1
* fix ts and qm targets for shadow builds and builds with -prefixOswald Buddenhagen2009-10-013-20/+26
* remove *_untranslated.tsOswald Buddenhagen2009-10-013-3/+2
* remove unused translations.proOswald Buddenhagen2009-10-011-34/+0
* Update license headers again.Jason McDonald2009-09-09