X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FConfig.h.in;h=708dec1f9f21d52b344660b0e93949f41188ce1f;hb=5c78aecb0f5a207ff020e24f99d1e9bd8c388ad1;hp=1050a244fec50816e064be850f54b9cbb08b398e;hpb=ea46079b5aef76c1782648ed23e70ea944649635;p=FrontAlgorithms.git diff --git a/lib/fpa/Config.h.in b/lib/fpa/Config.h.in index 1050a24..708dec1 100644 --- a/lib/fpa/Config.h.in +++ b/lib/fpa/Config.h.in @@ -1,37 +1,23 @@ +// ========================================================================= +// @author Leonardo Florez Valencia +// @email florez-l@javeriana.edu.co +// ========================================================================= + #ifndef __fpa__Config__h__ #define __fpa__Config__h__ -#include - -/* - * ========================================================================= - * Version numbers and strings - * ========================================================================= - */ -#define fpa_MAJOR_VERSION @prj_MAJ_VER@ -#define fpa_MINOR_VERSION @prj_MIN_VER@ -#define fpa_RELEASE_VERSION @prj_REL_VER@ -#define fpa_VERSION "@prj_VERSION@" -#define fpa_SHORT_VERSION "@prj_SHORT_VERSION@" - -/* - * ========================================================================= - * Language related macros - * ========================================================================= - */ +#define VTK_FOUND @VTK_FOUND@ +#if VTK_FOUND == 1 +# define USE_VTK +#else +# undef USE_VTK +#endif -#if __cplusplus >= 201103L -# define fpa_OVERRIDE override -# define fpa_DELETE_FUNCTION =delete -# define fpa_NULLPTR nullptr -# define fpa_NOEXCEPT noexcept -# define fpa_HAS_CXX11_STATIC_ASSERT -# define fpa_HAS_CXX11_RVREF +#define ivq_FOUND @ivq_FOUND@ +#if ivq_FOUND == 1 +# define USE_ivq #else -# define fpa_OVERRIDE -# define fpa_DELETE_FUNCTION -# define fpa_NULLPTR NULL -# define fpa_NOEXCEPT throw() +# undef USE_ivq #endif #endif // __fpa__Config__h__