https://github.com/Kitware/CMake
Revision 1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb authored by Marc Chevrier on 04 July 2019, 16:14:22 UTC, committed by Marc Chevrier on 14 July 2019, 13:37:30 UTC
1 parent d9b2c7d
Raw File
Tip revision: 1591f138f1a40fccdde7fb2796ee2d2d8f3f97bb authored by Marc Chevrier on 04 July 2019, 16:14:22 UTC
modernize: manage cmCommand instances using unique_ptr.
Tip revision: 1591f13
cm_jsoncpp_writer.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_writer_h
#define cm_jsoncpp_writer_h

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

#endif
back to top