2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-01-20 14:28:59 +00:00
|
|
|
#ifndef cm_jsoncpp_value_h
|
|
|
|
#define cm_jsoncpp_value_h
|
|
|
|
|
|
|
|
/* Use the jsoncpp library configured for CMake. */
|
2015-01-20 15:31:13 +00:00
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_JSONCPP
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <json/value.h>
|
2015-01-20 15:31:13 +00:00
|
|
|
#else
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <cmjsoncpp/include/json/value.h>
|
2015-01-20 15:31:13 +00:00
|
|
|
#endif
|
2015-01-20 14:28:59 +00:00
|
|
|
|
|
|
|
#endif
|