-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRobartsVTKConfigure.h.in
37 lines (25 loc) · 1.01 KB
/
RobartsVTKConfigure.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*=========================================================================
Program: Robarts Visualization Toolkit
Copyright (c) Adam Rankin, Robarts Research Institute
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// This file stores values determined during CMake configuration and
// includes commonly needed header files.
// This file has to be the first include in RobartsVTK cxx files.
#ifndef __RobartsVTKConfigure_h
#define __RobartsVTKConfigure_h
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#cmakedefine BUILD_SHARED_LIBS
#ifndef BUILD_SHARED_LIBS
#define RobartsVTK_STATIC
#endif
#include <vtkType.h>
#ifndef VTK_HAS_MTIME_TYPE
typedef unsigned long int vtkMTimeType;
#endif
#include "vtkVersionMacros.h"
#endif // __RobartsVTKConfigure_h