https://github.com/Kitware/CMake
Revision d57c1a5b3116d1df1bd5a7c2d9857e7b96d2a4f4 authored by Brad King on 02 October 2019, 11:53:33 UTC, committed by Kitware Robot on 02 October 2019, 11:53:43 UTC
ed98209ddc Revise include order using clang-format-6.0
185fe49f29 clang-format: Normalize headers presentation
42ef28b4f3 Remove unused uid_t/gid_t types on Windows

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Sebastian Holtermann <sebholt@web.de>
Merge-request: !3851
2 parent s a4f404d + ed98209
Raw File
Tip revision: d57c1a5b3116d1df1bd5a7c2d9857e7b96d2a4f4 authored by Brad King on 02 October 2019, 11:53:33 UTC
Merge topic 'clang-format-normalize-headers-presentation'
Tip revision: d57c1a5
cmUtils.hxx
/* 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
back to top