vtk_pegtl.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_pegtl_h
4 #define vtk_pegtl_h
5 
6 /* Use the pegtl library configured for VTK. */
7 #define VTK_MODULE_USE_EXTERNAL_vtkpegtl 0
8 
9 #if VTK_MODULE_USE_EXTERNAL_vtkpegtl
10 # define VTK_PEGTL(x) <tao/x>
11 #else
12 # include <vtkpegtl/include/tao/pegtl.hpp>
13 # define VTK_PEGTL(x) <vtkpegtl/include/tao/x>
14 #endif
15 
16 #include VTK_PEGTL(pegtl.hpp)
17 
18 #endif