1
0

cmIncludeCommand.cxx 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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. return false;
  22. }
  23. bool optional = false;
  24. if(args.size() == 2)
  25. {
  26. optional = args[1] == "OPTIONAL";
  27. }
  28. bool readit = m_Makefile->ReadListFile( m_Makefile->GetCurrentListFile(),
  29. args[0].c_str());
  30. if(!optional && !readit)
  31. {
  32. std::string m = "Could not find include file: ";
  33. m += args[0];
  34. this->SetError(m.c_str());
  35. return false;
  36. }
  37. return true;
  38. }