Revision 071c94eeac9811c8dbe7b6e627899051f1a18ec4 authored by Brad King on 21 January 2016, 18:55:44 UTC, committed by CMake Topic Stage on 21 January 2016, 18:55:44 UTC
ec00e89e ExternalProject: Fix TEST_BEFORE_INSTALL for multi-config generators
5d739a3c ExternalProject: Simplify `cmake --build` configuration passing

2 parent s 1846765 + ec00e89
Raw File
cm_jsoncpp_value.h
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2000-2015 Kitware, Inc., Insight Software Consortium

  Distributed under the OSI-approved BSD License (the "License");
  see accompanying file Copyright.txt for details.

  This software is distributed WITHOUT ANY WARRANTY; without even the
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the License for more information.
============================================================================*/
#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