cmCxxModuleUsageEffects.cxx 650 B

123456789101112131415161718192021
  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 "cmCxxModuleUsageEffects.h"
  4. cmCxxModuleUsageEffects::cmCxxModuleUsageEffects(
  5. cmGeneratorTarget const* /*gt*/)
  6. : Hash("0000000000000000000000000000000000000000")
  7. {
  8. // TODO: collect information from the generator target as to what might
  9. // affect module consumption.
  10. }
  11. void cmCxxModuleUsageEffects::ApplyToTarget(cmTarget* /*tgt*/)
  12. {
  13. // TODO: apply the information collected in the constructor
  14. }
  15. std::string const& cmCxxModuleUsageEffects::GetHash() const
  16. {
  17. return this->Hash;
  18. }