forked from Biomechanical-ToolKit/BTKCore
-
Notifications
You must be signed in to change notification settings - Fork 5
/
btkConfigure.h.in
122 lines (112 loc) · 4.18 KB
/
btkConfigure.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* The Biomechanical ToolKit
* Copyright (c) 2009-2014, Arnaud Barré
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
* * Neither the name(s) of the copyright holders nor the names
* of its contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __btkConfigure_h
#define __btkConfigure_h
#define BTK_VERSION_MAJOR @BTK_VERSION_MAJOR@
#define BTK_VERSION_MINOR @BTK_VERSION_MINOR@
#define BTK_VERSION_PATCH @BTK_VERSION_PATCH@
#define BTK_VERSION_STRING "@BTK_VERSION_STRING@"
// Compiled on a 64 bit OS?
#if defined(__APPLE__)
#if defined __x86_64__ || defined __ppc64__
#define HAVE_64_BIT
#endif
#else
#cmakedefine HAVE_64_BIT
#endif
// Looking for mmap
#cmakedefine HAVE_SYS_MMAP
// Looking for std::shared_ptr in memory.h
#cmakedefine HAVE_SYS_TR1_MEMORY_H
#cmakedefine HAVE_SYS_MEMORY_H
#cmakedefine HAVE_BOOST_TR1_MEMORY_HPP
#cmakedefine HAVE_BOOST_MEMORY_HPP
// Special case for Matlab R2010b & MSVC2010
#if defined(_MSC_VER)
#if (_MSC_VER >= 1600)
#cmakedefine FIX_MATLAB_CHAR16_T_TYPE
#endif
#endif
// For atomic timestamp
#cmakedefine HAVE_PTHREADS
#cmakedefine HAVE_SPROC
#cmakedefine HAVE_PTHREADS
#cmakedefine HAVE_WIN32_THREADS
#cmakedefine HAVE_ATOMIC_BUILTINS
// For dll symbols in Windows
#cmakedefine BTK_BUILD_SHARED_LIBS
#if (defined(BTK_BUILD_SHARED_LIBS))
#if (defined(_MSC_VER))
// BTKCommon
#if defined(BTKCommon_EXPORTS)
#define BTK_COMMON_EXPORT __declspec(dllexport)
#else
#define BTK_COMMON_EXPORT __declspec(dllimport)
#endif
// BTKIO
#if defined(BTKIO_EXPORTS)
#define BTK_IO_EXPORT __declspec(dllexport)
#else
#define BTK_IO_EXPORT __declspec(dllimport)
#endif
// BTKBasicFilters
#if defined(BTKBasicFilters_EXPORTS)
#define BTK_BASICFILTERS_EXPORT __declspec(dllexport)
#else
#define BTK_BASICFILTERS_EXPORT __declspec(dllimport)
#endif
#elif (defined(__GNUC__) && (__GNUC__ >= 4))
#define BTK_COMMON_EXPORT __attribute__((visibility("default")))
#define BTK_IO_EXPORT __attribute__((visibility("default")))
#define BTK_BASICFILTERS_EXPORT __attribute__((visibility("default")))
#else
#error Unsupported compiler to build modules as dynamic libraries
#endif
#else
#define BTK_COMMON_EXPORT
#define BTK_IO_EXPORT
#define BTK_BASICFILTERS_EXPORT
#endif
// Addons for Eigen
#ifdef EIGEN_CORE_H
#error The header btkConfigure.h must be included before the inclusion of any Eigen headers to integrate the implemented Eigen plugins
#endif
// Need to be defined before the inclusion of the Eigen headers
#define EIGEN_DENSEBASE_PLUGIN <btkEigen/Plugin/DenseBaseAddons.h>
#define EIGEN_VECTOROP_PLUGIN <btkEigen/Plugin/VectorOpAddons.h>
#include "btkEigen/Plugin/ForwardDeclarations.h"
#include <Eigen/Core>
#include "btkEigen/Plugin/Functors.h"
#endif // __btkConfigure_h