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. */
|
2014-12-11 21:10:03 +03:00
|
|
|
#ifndef cm_zlib_h
|
|
|
|
#define cm_zlib_h
|
2006-10-19 23:00:10 +04:00
|
|
|
|
|
|
|
/* Use the zlib library configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_ZLIB
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <zlib.h>
|
2006-10-19 23:00:10 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <cmzlib/zlib.h>
|
2006-10-19 23:00:10 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|