You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
776 B
C

/*=========================================================================
Program: ParaView
Module: vtk_lz4.h.in
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef vtk_lz4_h
#define vtk_lz4_h
/* Use the lz4 library configured for VTK. */
#define VTK_MODULE_USE_EXTERNAL_vtklz4 0
#if VTK_MODULE_USE_EXTERNAL_vtklz4
# include <lz4.h>
#else
# include <vtklz4/lib/lz4.h>
#endif
#endif