2016-09-27 22:01:08 +03: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 17:28:59 +03:00
|
|
|
#ifndef cm_jsoncpp_value_h
|
|
|
|
#define cm_jsoncpp_value_h
|
|
|
|
|
|
|
|
/* Use the jsoncpp library configured for CMake. */
|
2015-01-20 18:31:13 +03:00
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_JSONCPP
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <json/value.h>
|
2015-01-20 18:31:13 +03:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <cmjsoncpp/include/json/value.h>
|
2015-01-20 18:31:13 +03:00
|
|
|
#endif
|
2015-01-20 17:28:59 +03:00
|
|
|
|
|
|
|
#endif
|