vtk_lzma.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 #ifndef vtk_lzma_h
4 #define vtk_lzma_h
5 
6 #define LZMA_BUILT_AS_DYNAMIC_LIB 1
7 #if !LZMA_BUILT_AS_DYNAMIC_LIB
8 #define LZMA_API_STATIC
9 #endif
10 
11 /* Use the lzma library configured for VTK. */
12 #define VTK_MODULE_USE_EXTERNAL_vtklzma 0
13 
14 #if VTK_MODULE_USE_EXTERNAL_vtklzma
15 # include <lzma.h>
16 #else
17 # include <vtklzma/src/liblzma/api/lzma.h>
18 #endif
19 
20 #endif