mirror of
https://github.com/Kitware/CMake.git
synced 2025-07-21 23:40:38 +08:00

Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
35 lines
946 B
C++
35 lines
946 B
C++
/* 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"
|
|
|
|
#include <set>
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmCommand.h"
|
|
|
|
class cmDependInformation;
|
|
class cmExecutionStatus;
|
|
|
|
class cmOutputRequiredFilesCommand : public cmCommand
|
|
{
|
|
public:
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmOutputRequiredFilesCommand; }
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
|
std::string GetName() const CM_OVERRIDE { return "output_required_files"; }
|
|
|
|
void ListDependencies(cmDependInformation const* info, FILE* fout,
|
|
std::set<cmDependInformation const*>* visited);
|
|
|
|
private:
|
|
std::string File;
|
|
std::string OutputFile;
|
|
};
|
|
|
|
#endif
|