https://github.com/Kitware/CMake
Revision 39b7954d4de734d6f08fab1a6fb442abc2e9bb5c authored by Kitware Robot on 13 January 2016, 05:01:10 UTC, committed by Kitware Robot on 13 January 2016, 05:01:10 UTC
1 parent b500972
Raw File
Tip revision: 39b7954d4de734d6f08fab1a6fb442abc2e9bb5c authored by Kitware Robot on 13 January 2016, 05:01:10 UTC
CMake Nightly Date Stamp
Tip revision: 39b7954
cm_zlib.h
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2000-2009 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_zlib_h
#define cm_zlib_h

/* Use the zlib library configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_ZLIB
# include <zlib.h>
#else
# include <cmzlib/zlib.h>
#endif

#endif
back to top