blob: 1089e5b35fc8f4313f90631ca0626803bc054e99 [file]
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#include "cmGenExContext.h"
#include <utility>
namespace cm {
namespace GenEx {
Context::Context(cmLocalGenerator const* lg, std::string config,
std::string language)
: LG(lg)
, Config(std::move(config))
, Language(std::move(language))
{
}
}
}