vtkPythonConfigure.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPythonConfigure.h.in
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 #ifndef vtkPythonConfigure_h
16 #define vtkPythonConfigure_h
17 
18 /* This header is configured by VTK's build process. */
19 
20 /* E.g. on BlueGene and Cray there is no multithreading */
21 #define VTK_NO_PYTHON_THREADS
22 /* #undef VTK_PYTHON_FULL_THREADSAFE */
23 
24 /* Whether the real python debug library has been provided. */
25 /* #undef VTK_WINDOWS_PYTHON_DEBUGGABLE */
26 
27 /* build specific site-packages suffix. This is used to setup Python
28  * module paths during initialization.
29  */
30 #define VTK_PYTHON_SITE_PACKAGES_SUFFIX "lib64/python3.9/site-packages"
31 
32 #endif