vtkPythonConfigure.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 vtkPythonConfigure_h
4 #define vtkPythonConfigure_h
5 
6 /* This header is configured by VTK's build process. */
7 
8 /* E.g. on BlueGene and Cray there is no multithreading */
9 #define VTK_NO_PYTHON_THREADS
10 /* #undef VTK_PYTHON_FULL_THREADSAFE */
11 
12 /* Whether the real python debug library has been provided. */
13 /* #undef VTK_WINDOWS_PYTHON_DEBUGGABLE */
14 
15 /* build specific site-packages suffix. This is used to setup Python
16  * module paths during initialization.
17  */
18 #define VTK_PYTHON_SITE_PACKAGES_SUFFIX "lib64/python3.10/site-packages"
19 
20 #endif