https://github.com/Kitware/CMake
Revision e1af2489fda9129e735007a069fae018c4ab3431 authored by Kitware Robot on 14 March 2019, 04:01:08 UTC, committed by Kitware Robot on 14 March 2019, 04:01:08 UTC
1 parent 80b761b
Raw File
Tip revision: e1af2489fda9129e735007a069fae018c4ab3431 authored by Kitware Robot on 14 March 2019, 04:01:08 UTC
CMake Nightly Date Stamp
Tip revision: e1af248
cmGeneratorExpressionContext.cxx
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#include "cmGeneratorExpressionContext.h"

#include <utility>

cmGeneratorExpressionContext::cmGeneratorExpressionContext(
  cmLocalGenerator* lg, std::string config, bool quiet,
  cmGeneratorTarget const* headTarget, const cmGeneratorTarget* currentTarget,
  bool evaluateForBuildsystem, cmListFileBacktrace backtrace,
  std::string language)
  : Backtrace(std::move(backtrace))
  , LG(lg)
  , Config(std::move(config))
  , Language(std::move(language))
  , HeadTarget(headTarget)
  , CurrentTarget(currentTarget)
  , Quiet(quiet)
  , HadError(false)
  , HadContextSensitiveCondition(false)
  , HadHeadSensitiveCondition(false)
  , EvaluateForBuildsystem(evaluateForBuildsystem)
{
}
back to top