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