]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Config.h.in
...
[FrontAlgorithms.git] / lib / fpa / Config.h.in
index 1050a244fec50816e064be850f54b9cbb08b398e..708dec1f9f21d52b344660b0e93949f41188ce1f 100644 (file)
@@ -1,37 +1,23 @@
+// =========================================================================
+// @author Leonardo Florez Valencia
+// @email florez-l@javeriana.edu.co
+// =========================================================================
+
 #ifndef __fpa__Config__h__
 #define __fpa__Config__h__
 
-#include <fpa_Export.h>
-
-/*
- * =========================================================================
- * 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__