vtk_lz4.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3 // SPDX-License-Identifier: BSD-3-Clause
4 #ifndef vtk_lz4_h
5 #define vtk_lz4_h
6 
7 /* Use the lz4 library configured for VTK. */
8 #define VTK_MODULE_USE_EXTERNAL_vtklz4 0
9 
10 #if VTK_MODULE_USE_EXTERNAL_vtklz4
11 # include <lz4.h>
12 #else
13 # include <vtklz4/lib/lz4.h>
14 #endif
15 
16 #endif