You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.8 KiB

  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 "cmLinkLibrariesCommand.h"
  14. // cmLinkLibrariesCommand
  15. bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args)
  16. {
  17. if(args.size() < 1 )
  18. {
  19. return true;
  20. }
  21. // add libraries, nothe that there is an optional prefix
  22. // of debug and optimized than can be used
  23. for(std::vector<std::string>::const_iterator i = args.begin();
  24. i != args.end(); ++i)
  25. {
  26. if (*i == "debug")
  27. {
  28. ++i;
  29. if(i == args.end())
  30. {
  31. this->SetError("The \"debug\" argument must be followed by "
  32. "a library");
  33. return false;
  34. }
  35. this->Makefile->AddLinkLibrary(i->c_str(),
  36. cmTarget::DEBUG);
  37. }
  38. else if (*i == "optimized")
  39. {
  40. ++i;
  41. if(i == args.end())
  42. {
  43. this->SetError("The \"optimized\" argument must be followed by "
  44. "a library");
  45. return false;
  46. }
  47. this->Makefile->AddLinkLibrary(i->c_str(),
  48. cmTarget::OPTIMIZED);
  49. }
  50. else
  51. {
  52. this->Makefile->AddLinkLibrary(i->c_str());
  53. }
  54. }
  55. return true;
  56. }