https://github.com/Kitware/CMake
Revision 0a5dd3c700f1873be217707aa89a805d009bac3e authored by Sebastian Holtermann on 06 August 2016, 11:09:59 UTC, committed by Brad King on 10 August 2016, 17:21:33 UTC
The class generates a semi-unique (checksum based) pathless file name
from a full source file path.
1 parent 3a5f609
Raw File
Tip revision: 0a5dd3c700f1873be217707aa89a805d009bac3e authored by Sebastian Holtermann on 06 August 2016, 11:09:59 UTC
cmFilePathUuid: Add class to generate deterministic unique file names
Tip revision: 0a5dd3c
cm_bzlib.h
/*============================================================================
  CMake - Cross Platform Makefile Generator
  Copyright 2000-2012 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_bzlib_h
#define cm_bzlib_h

/* Use the bzip2 library configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_BZIP2
#include <bzlib.h>
#else
#include <cmbzip2/bzlib.h>
#endif

#endif
back to top