https://github.com/Kitware/CMake
Revision 7bbddeb78d46193eda9c2a948040e50012fbe33b authored by Craig Scott on 09 October 2019, 12:55:43 UTC, committed by Brad King on 10 October 2019, 13:20:50 UTC
Other multi-word command line options use hyphens to separate
the words, so the --loglevel option introduced in CMake 3.15 was
inconsistent in this regard. Rename it to --log-level but still support
the original --loglevel name to preserve backward compatibility.
1 parent ead8986
Raw File
Tip revision: 7bbddeb78d46193eda9c2a948040e50012fbe33b authored by Craig Scott on 09 October 2019, 12:55:43 UTC
CLI: Rename --loglevel to --log-level for naming consistency
Tip revision: 7bbddeb
cm_jsoncpp_value.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cm_jsoncpp_value_h
#define cm_jsoncpp_value_h

/* Use the jsoncpp library configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_JSONCPP
#  include <json/value.h>
#else
#  include <cmjsoncpp/include/json/value.h>
#endif

#endif
back to top