cmTargetLinkLibrariesCommand.cxx 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 "cmTargetLinkLibrariesCommand.h"
  14. // cmTargetLinkLibrariesCommand
  15. bool cmTargetLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args)
  16. {
  17. if(args.size() < 2)
  18. {
  19. this->SetError("called with incorrect number of arguments");
  20. return false;
  21. }
  22. // add libraries, nothe that there is an optional prefix
  23. // of debug and optimized than can be used
  24. std::vector<std::string>::const_iterator i = args.begin();
  25. for(++i; i != args.end(); ++i)
  26. {
  27. if (*i == "debug")
  28. {
  29. ++i;
  30. m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
  31. cmTarget::DEBUG);
  32. }
  33. else if (*i == "optimized")
  34. {
  35. ++i;
  36. m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
  37. cmTarget::OPTIMIZED);
  38. }
  39. else
  40. {
  41. m_Makefile->AddLinkLibraryForTarget(args[0].c_str(),i->c_str(),
  42. cmTarget::GENERAL);
  43. }
  44. }
  45. return true;
  46. }