diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-12-20 17:59:37 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-12-20 17:59:50 (GMT) |
commit | 61960fa466ee5b1492a56fefcee6e47fd31dbfaf (patch) | |
tree | 83a76a795bbc3e835a956160550ce5026b7ee2f4 /Source/cmake.cxx | |
parent | 1a81acdd229f066d7b50df984d84904e923a2f28 (diff) | |
parent | f3c93962609f19ababd58b48db313f836bd8f0e7 (diff) | |
download | CMake-61960fa466ee5b1492a56fefcee6e47fd31dbfaf.zip CMake-61960fa466ee5b1492a56fefcee6e47fd31dbfaf.tar.gz CMake-61960fa466ee5b1492a56fefcee6e47fd31dbfaf.tar.bz2 |
Merge topic 'add_find_call_debugging'
f3c9396260 Help: Document CMAKE_FIND_DEBUG_MODE
204b8d9f4e find_*: Use debug logging infrastructure
a7ea20649d find_*: Add debug logging infrastructure
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3935
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index fdb3687..6b85937 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -751,6 +751,9 @@ void cmake::SetArgs(const std::vector<std::string>& args) this->LogLevelWasSetViaCLI = true; } else if (arg == "--log-context") { this->SetShowLogContext(true); + } else if (arg.find("--debug-find", 0) == 0) { + std::cout << "Running with debug output on for the `find` commands.\n"; + this->SetDebugFindOutputOn(true); } else if (arg.find("--trace-expand", 0) == 0) { std::cout << "Running with expanded trace output on.\n"; this->SetTrace(true); |