cmSubdirDependsCommand.cxx 505 B

12345678910111213141516
  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 "cmSubdirDependsCommand.h"
  4. #include "cmPolicies.h"
  5. class cmExecutionStatus;
  6. bool cmSubdirDependsCommand::InitialPass(std::vector<std::string> const&,
  7. cmExecutionStatus&)
  8. {
  9. this->Disallowed(
  10. cmPolicies::CMP0029,
  11. "The subdir_depends command should not be called; see CMP0029.");
  12. return true;
  13. }