CMake Nightly Date Stamp
[kiteware-cmake.git] / Source / cmAddLinkOptionsCommand.cxx
blob7ed31bdbc49ae7f5995e9fc4d3733ff15c23b46a
1 /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2 file Copyright.txt or https://cmake.org/licensing for details. */
3 #include "cmAddLinkOptionsCommand.h"
5 #include "cmExecutionStatus.h"
6 #include "cmMakefile.h"
8 bool cmAddLinkOptionsCommand(std::vector<std::string> const& args,
9 cmExecutionStatus& status)
11 cmMakefile& mf = status.GetMakefile();
12 for (std::string const& i : args) {
13 mf.AddLinkOption(i);
15 return true;