You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
700 B
27 lines
700 B
2 years ago
|
#ifndef __exodusII_cfg_h
|
||
|
#define __exodusII_cfg_h
|
||
|
|
||
|
#define EXODUSII_VERSION_MAJOR @EXODUSII_VERSION_MAJOR@
|
||
|
#define EXODUSII_VERSION_MINOR @EXODUSII_VERSION_MINOR@
|
||
|
#define EXODUSII_VERSION_PATCH @EXODUSII_VERSION_PATCH@
|
||
|
#define EXODUSII_VERSION "@EXODUSII_VERSION_MAJOR@.@EXODUSII_VERSION_MINOR@.@EXODUSII_VERSION_PATCH@"
|
||
|
|
||
|
|
||
|
#if defined(_WIN32) && !defined(WIN32)
|
||
|
# define WIN32
|
||
|
#endif
|
||
|
|
||
|
#cmakedefine EXODUSII_BUILD_SHARED_LIBS
|
||
|
#if defined(WIN32) && defined(EXODUSII_BUILD_SHARED_LIBS)
|
||
|
# if defined(vtkexoIIc_EXPORTS)
|
||
|
# define EXODUS_EXPORT __declspec( dllexport ) extern
|
||
|
# else
|
||
|
# define EXODUS_EXPORT __declspec( dllimport ) extern
|
||
|
# endif
|
||
|
#else
|
||
|
# define EXODUS_EXPORT extern
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|