STYLE: Fix line-too-long
[cmake.git] / Source / cmLinkLibrariesCommand.cxx
blobf125419501d3895ca8fd4267403fbdd4457e6a42
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmLinkLibrariesCommand.cxx,v $
5 Language: C++
6 Date: $Date: 2008-01-23 15:27:59 $
7 Version: $Revision: 1.24 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #include "cmLinkLibrariesCommand.h"
19 // cmLinkLibrariesCommand
20 bool cmLinkLibrariesCommand
21 ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
23 if(args.size() < 1 )
25 return true;
27 // add libraries, nothe that there is an optional prefix
28 // of debug and optimized than can be used
29 for(std::vector<std::string>::const_iterator i = args.begin();
30 i != args.end(); ++i)
32 if (*i == "debug")
34 ++i;
35 if(i == args.end())
37 this->SetError("The \"debug\" argument must be followed by "
38 "a library");
39 return false;
41 this->Makefile->AddLinkLibrary(i->c_str(),
42 cmTarget::DEBUG);
44 else if (*i == "optimized")
46 ++i;
47 if(i == args.end())
49 this->SetError("The \"optimized\" argument must be followed by "
50 "a library");
51 return false;
53 this->Makefile->AddLinkLibrary(i->c_str(),
54 cmTarget::OPTIMIZED);
56 else
58 this->Makefile->AddLinkLibrary(i->c_str());
62 return true;