diff options
Diffstat (limited to 'Source/cmOutputRequiredFilesCommand.h')
-rw-r--r-- | Source/cmOutputRequiredFilesCommand.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Source/cmOutputRequiredFilesCommand.h b/Source/cmOutputRequiredFilesCommand.h new file mode 100644 index 0000000..09e622b --- /dev/null +++ b/Source/cmOutputRequiredFilesCommand.h @@ -0,0 +1,33 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cmOutputRequiredFilesCommand_h +#define cmOutputRequiredFilesCommand_h + +#include "cmConfigure.h" // IWYU pragma: keep + +#include <set> +#include <stdio.h> +#include <string> +#include <vector> + +#include "cmCommand.h" + +class cmDependInformation; +class cmExecutionStatus; + +class cmOutputRequiredFilesCommand : public cmCommand +{ +public: + cmCommand* Clone() override { return new cmOutputRequiredFilesCommand; } + bool InitialPass(std::vector<std::string> const& args, + cmExecutionStatus& status) override; + + void ListDependencies(cmDependInformation const* info, FILE* fout, + std::set<cmDependInformation const*>* visited); + +private: + std::string File; + std::string OutputFile; +}; + +#endif |