cmGenExContext.cxx 417 B

12345678910111213141516171819
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst or https://cmake.org/licensing for details. */
  3. #include "cmGenExContext.h"
  4. #include <utility>
  5. namespace cm {
  6. namespace GenEx {
  7. Context::Context(cmLocalGenerator const* lg, std::string config,
  8. std::string language)
  9. : LG(lg)
  10. , Config(std::move(config))
  11. , Language(std::move(language))
  12. {
  13. }
  14. }
  15. }