diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000000000000000000000000000000000000..e6cdfd6864ec1a7f4701f2007676bd72d27fb951 --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,45 @@ +/* begin dumux-lecture + put the definitions for config.h specific to + your project here. Everything above will be + overwritten +*/ + +/* begin private */ +/* Name of package */ +#define PACKAGE "@DUNE_MOD_NAME@" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "@DUNE_MAINTAINER@" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "@DUNE_MOD_NAME@" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "@DUNE_MOD_NAME@ @DUNE_MOD_VERSION@" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "@DUNE_MOD_NAME@" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "@DUNE_MOD_URL@" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "@DUNE_MOD_VERSION@" + +/* end private */ + +/* Define to the version of dumux-lecture */ +#define DUMUX_LECTURE_VERSION "@DUMUX_LECTURE_VERSION@" + +/* Define to the major version of dumux-lecture */ +#define DUMUX_LECTURE_VERSION_MAJOR @DUMUX_LECTURE_VERSION_MAJOR@ + +/* Define to the minor version of dumux-lecture */ +#define DUMUX_LECTURE_VERSION_MINOR @DUMUX_LECTURE_VERSION_MINOR@ + +/* Define to the revision of dumux-lecture */ +#define DUMUX_LECTURE_VERSION_REVISION @DUMUX_LECTURE_VERSION_REVISION@ + +/* end dumux-lecture + Everything below here will be overwritten +*/ diff --git a/config.h.cmake.in b/config.h.cmake.in deleted file mode 100644 index 155f87c6267b1d036d440290ad5e60c20b0ae0d7..0000000000000000000000000000000000000000 --- a/config.h.cmake.in +++ /dev/null @@ -1,52 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#define DUNE_MINIMAL_DEBUG_LEVEL 4 -#cmakedefine HAVE_DUNE 1 -#cmakedefine HAVE_DUNE_GRID 1 -#cmakedefine HAVE_DUNE_FEM 1 -#cmakedefine HAVE_DUNE_ISTL 1 -#cmakedefine HAVE_DUNE_LOCALFUNCTIONS 1 -#cmakedefine HAVE_DUNE_PDELAB 1 - -#ifdef ENABLE_MPI -#cmakedefine HAVE_MPI 1 -#endif - -#ifdef ENABLE_UG -#cmakedefine HAVE_UG 1 -#ifdef ENABLE_MPI -#define ModelP -#endif -#endif - -#ifdef ENABLE_ALUGRID -#cmakedefine HAVE_ALUGRID 1 -#endif - -#ifdef ENABLE_METIS -#cmakedefine HAVE_METIS 1 -#endif - -#ifdef ENABLE_ALBERTA -#cmakedefine HAVE_ALBERTA 1 -#endif - -#cmakedefine PROJECT_NAME "${PROJECT_NAME}" -#cmakedefine PROJECT_VERSION "${PROJECT_VERSION}" -#cmakedefine PROJECT_MAINTAINER "${PROJECT_MAINTAINER}" -#cmakedefine PROJECT_MAINTAINER_EMAIL "${PROJECT_MAINTAINER_EMAIL}" - -/* tr1/array. */ -#cmakedefine HAVE_TR1_ARRAY 1 -#cmakedefine HAVE_MALLOC_H 1 -#cmakedefine HAVE_VALGRIND 1 -#define HAVE_NULLPTR 1 - -#define DUMUX_DEPRECATED __attribute__((deprecated)) -#define DUMUX_DEPRECATED_MSG(msg) __attribute__((deprecated(msg))) - -#define DUNE_DEPRECATED __attribute__((deprecated)) -#define DUNE_DEPRECATED_MSG(msg) __attribute__((deprecated(msg))) - -#endif // CONFIG_H