cmLinkLibrariesCommand.cxx 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. m_Makefile->AddLinkLibrary(i->c_str(),
  30. cmTarget::DEBUG);
  31. }
  32. else if (*i == "optimized")
  33. {
  34. ++i;
  35. m_Makefile->AddLinkLibrary(i->c_str(),
  36. cmTarget::OPTIMIZED);
  37. }
  38. else
  39. {
  40. m_Makefile->AddLinkLibrary(i->c_str());
  41. }
  42. const char* ldir = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
  43. if (cmSystemTools::IsOff(ldir))
  44. {
  45. std::string libPath = *i + "_CMAKE_PATH";
  46. const char* dir = m_Makefile->GetDefinition(libPath.c_str());
  47. if( dir )
  48. {
  49. m_Makefile->AddLinkDirectory( dir );
  50. }
  51. }
  52. else
  53. {
  54. m_Makefile->AddLinkDirectory( ldir );
  55. }
  56. }
  57. return true;
  58. }