2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-01-13 10:45:04 -05:00
|
|
|
#ifndef cm_jsoncpp_reader_h
|
|
|
|
#define cm_jsoncpp_reader_h
|
|
|
|
|
|
|
|
/* Use the jsoncpp library configured for CMake. */
|
2015-01-20 10:31:13 -05:00
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_JSONCPP
|
2016-05-16 10:34:04 -04:00
|
|
|
#include <json/reader.h>
|
2015-01-20 10:31:13 -05:00
|
|
|
#else
|
2016-05-16 10:34:04 -04:00
|
|
|
#include <cmjsoncpp/include/json/reader.h>
|
2015-01-20 10:31:13 -05:00
|
|
|
#endif
|
2015-01-13 10:45:04 -05:00
|
|
|
|
|
|
|
#endif
|