cmake/Source/cmGeneratorExpressionContext.cxx

23 lines
800 B
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-08-17 11:37:30 +02:00
#include "cmGeneratorExpressionContext.h"
2016-07-09 11:21:54 +02:00
2015-08-17 11:37:30 +02:00
cmGeneratorExpressionContext::cmGeneratorExpressionContext(
2016-07-09 11:21:54 +02:00
cmLocalGenerator* lg, std::string const& config, bool quiet,
cmGeneratorTarget const* headTarget, const cmGeneratorTarget* currentTarget,
bool evaluateForBuildsystem, cmListFileBacktrace const& backtrace,
std::string const& language)
: Backtrace(backtrace)
, LG(lg)
, Config(config)
, Language(language)
, HeadTarget(headTarget)
, CurrentTarget(currentTarget)
, Quiet(quiet)
, HadError(false)
, HadContextSensitiveCondition(false)
, HadHeadSensitiveCondition(false)
, EvaluateForBuildsystem(evaluateForBuildsystem)
2015-08-17 11:37:30 +02:00
{
}