SimpleITK  1.0.1
sitkConfigure.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright Insight Software Consortium
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18 #ifndef sitkConfigure_h
19 #define sitkConfigure_h
20 
21 
22 /* #undef SITK_BUILD_SHARED_LIBS */
23 #ifdef SITK_BUILD_SHARED_LIBS
24 #define SITKDLL
25 #else
26 #define SITKSTATIC
27 #endif
28 /* #undef SITK_SimpleITKExplit_STATIC */
29 
30 
31 // defined if the system has C++0x "static_assert" keyword
32 /* #undef SITK_HAS_CXX11_STATIC_ASSERT */
33 // defined if the compiler has C++11 "nullptr" keyword
34 /* #undef SITK_HAS_CXX11_NULLPTR */
35 /* #undef SITK_HAS_CXX11_FUNCTIONAL */
36 /* #undef SITK_HAS_CXX11_TYPE_TRAITS */
37 /* #undef SITK_HAS_CXX11_UNORDERED_MAP */
38 /* #undef SITK_HAS_CXX11_UNIQUE_PTR */
39 /* #undef SITK_HAS_CXX11_ALIAS_TEMPLATE */
40 
41 #define SITK_HAS_TR1_SUB_INCLUDE
42 
43 #define SITK_HAS_TR1_FUNCTIONAL
44 #define SITK_HAS_TR1_TYPE_TRAITS
45 #define SITK_HAS_TR1_UNORDERED_MAP
46 
47 // defined if compiler supports using template keyword to disambiguate
48 // dependent names
49 #define SITK_HAS_TEMPLATE_DISAMBIGUATOR_DEPENDENT_NAME
50 
51 #define SITK_INT64_PIXELIDS
52 /* #undef SITK_4D_IMAGES */
53 
54 #define SITK_EXPLICIT_INSTANTIATION
55 
56 // Include ITK version reported in CMake with SITK prefix, so that
57 // SimpleITK dosen't need ITK header in our headers.
58 #define SITK_ITK_VERSION_MAJOR 4
59 #define SITK_ITK_VERSION_MINOR 11
60 #define SITK_ITK_VERSION_PATCH 1
61 
62 #endif // sitkConfigure_h