https://github.com/Kitware/CMake
Revision 1dd2c08b199bb451b73e438d62c1b05f6ccc5bd7 authored by Brad King on 06 September 2017, 15:24:50 UTC, committed by Brad King on 06 September 2017, 15:36:47 UTC
Assume that all cl 19.xx versions will use the same runtime DLL pattern.

Suggested-by: Tomasz Słodkowicz <slodki@users.noreply.github.com>
1 parent 02645aa
Raw File
Tip revision: 1dd2c08b199bb451b73e438d62c1b05f6ccc5bd7 authored by Brad King on 06 September 2017, 15:24:50 UTC
InstallRequiredSystemLibraries: Add support for future VS 2017 toolchains
Tip revision: 1dd2c08
cm_zlib.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#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