mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
9198e6a27b
The last KDevelop3 release was many years ago, in 2008 I think. I haven't seen or read about anybody using KDevelop 3 since a long time, so I think it can safely be removed from CMake. KDevelop 4 (first released in 2010) has its own proper CMake support now, independent from this generator. Alex
18 lines
545 B
C++
18 lines
545 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmUtils_hxx
|
|
#define cmUtils_hxx
|
|
|
|
#include "cmsys/SystemTools.hxx"
|
|
|
|
// Use the make system's VERBOSE environment variable to enable
|
|
// verbose output. This can be skipped by also setting CMAKE_NO_VERBOSE
|
|
// (which is set by the Eclipse generator).
|
|
inline bool isCMakeVerbose()
|
|
{
|
|
return (cmSystemTools::HasEnv("VERBOSE") &&
|
|
!cmSystemTools::HasEnv("CMAKE_NO_VERBOSE"));
|
|
}
|
|
|
|
#endif
|