cmIncludeCommand.cxx 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Insight Consortium. All rights reserved.
  8. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #include "cmIncludeCommand.h"
  14. // cmIncludeCommand
  15. bool cmIncludeCommand::InitialPass(std::vector<std::string> const& args)
  16. {
  17. if (args.size()< 1 || args.size() > 2)
  18. {
  19. this->SetError("called with wrong number of arguments. "
  20. "Include only takes one file.");
  21. }
  22. bool exists = cmSystemTools::FileExists(args[0].c_str());
  23. if(args.size() == 2 && args[1] == "OPTIONAL" && !exists)
  24. {
  25. return true;
  26. }
  27. if(!exists)
  28. {
  29. std::string error = "Include file not found: " + args[0] + "\n";
  30. this->SetError(error.c_str());
  31. return false;
  32. }
  33. m_Makefile->ReadListFile( m_Makefile->GetCurrentListFile(),
  34. args[0].c_str());
  35. return true;
  36. }