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 /* For platforms that don't support Python threads */
9 #define VTK_NO_PYTHON_THREADS
10 
11 /* This adds the locks that allow Python thread concurrency */
12 /* #undef VTK_PYTHON_FULL_THREADSAFE */
13 
14 /* Whether the real python debug library has been provided. */
15 /* #undef VTK_WINDOWS_PYTHON_DEBUGGABLE */
16 
17 /* build specific site-packages suffix. This is used to setup Python
18  * module paths during initialization.
19  */
20 #define VTK_PYTHON_SITE_PACKAGES_SUFFIX "lib64/python3.13/site-packages"
21 
22 #endif