diff options
Diffstat (limited to 'Source/cmSubdirDependsCommand.cxx')
-rw-r--r-- | Source/cmSubdirDependsCommand.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/cmSubdirDependsCommand.cxx b/Source/cmSubdirDependsCommand.cxx new file mode 100644 index 0000000..36e84d5 --- /dev/null +++ b/Source/cmSubdirDependsCommand.cxx @@ -0,0 +1,13 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#include "cmSubdirDependsCommand.h" + +#include "cmPolicies.h" + +class cmExecutionStatus; + +bool cmSubdirDependsCommand::InitialPass(std::vector<std::string> const&, + cmExecutionStatus&) +{ + return true; +} |