1 #ifndef __gdcmConfigure_h
2 #define __gdcmConfigure_h
4 /* This header is configured by GDCM's build process. */
6 /*--------------------------------------------------------------------------*/
7 /* Platform Features */
10 //#cmakedefine GDCM_WORDS_BIGENDIAN
12 /* Allow access to UINT32_MAX , cf gdcmCommon.h */
13 #define __STDC_LIMIT_MACROS
15 /* Hard code the path to the public dictionary */
16 #define PUB_DICT_PATH "@GDCM_PUB_DICT_PATH@"
18 /* Hardcode the path to GDCM_DATA_ROOT */
19 #define GDCM_DATA_ROOT "@GDCM_DATA_ROOT@"
21 /* For older gcc / broken plateform */
22 #cmakedefine GDCM_NO_ANSI_STRING_STREAM
24 /* I guess something important */
25 #cmakedefine HAVE_NO_STDINT_H
27 /* This variable allows you to have helpful debug statement */
28 /* That are in between #ifdef / endif in the gdcm code */
29 /* That means if GDCM_DEBUG is OFF there shouldn't be any 'cout' at all ! */
30 /* only cerr, for instance 'invalid file' will be allowed */
31 #cmakedefine GDCM_DEBUG
33 /* Whether we are building shared libraries. */
34 /* This is important as long as GDCM is LGPL */
35 #cmakedefine BUILD_SHARED_LIBS
38 /*--------------------------------------------------------------------------*/
42 #define GDCM_MAJOR_VERSION @GDCM_MAJOR_VERSION@
43 #define GDCM_MINOR_VERSION @GDCM_MINOR_VERSION@
44 #define GDCM_BUILD_VERSION @GDCM_BUILD_VERSION@
45 #define GDCM_VERSION "@GDCM_VERSION@"