https://github.com/Kitware/CMake
Raw File
Tip revision: 31f835410efeea50acd43512eb9e5646a26ea177 authored by Brad King on 13 September 2022, 13:53:22 UTC
CMake 3.24.2
Tip revision: 31f8354
cmAddDefinitionsCommand.cxx
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#include "cmAddDefinitionsCommand.h"

#include "cmExecutionStatus.h"
#include "cmMakefile.h"

bool cmAddDefinitionsCommand(std::vector<std::string> const& args,
                             cmExecutionStatus& status)
{
  cmMakefile& mf = status.GetMakefile();
  for (std::string const& i : args) {
    mf.AddDefineFlag(i);
  }
  return true;
}
back to top