cmPropertyDefinition.cxx 700 B

123456789101112131415161718
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmPropertyDefinition.h"
  4. #include <utility>
  5. cmPropertyDefinition::cmPropertyDefinition(std::string name,
  6. cmProperty::ScopeType scope,
  7. std::string shortDescription,
  8. std::string fullDescription,
  9. bool chain)
  10. : Name(std::move(name))
  11. , ShortDescription(std::move(shortDescription))
  12. , FullDescription(std::move(fullDescription))
  13. , Scope(scope)
  14. , Chained(chain)
  15. {
  16. }