Skip to content
Snippets Groups Projects
Commit 6c71145d authored by René Fritze's avatar René Fritze
Browse files

[cmake] avoid guard redefinitions

eigen and tbb might've already be discovered by pdelab/common
parent 4914c16d
No related branches found
No related tags found
No related merge requests found
......@@ -17,10 +17,14 @@
#define DUNE_STUFF_VERSION_REVISION ${DUNE_STUFF_VERSION_REVISION}
/* Define to 1 if eigen was found, else 0 */
#ifndef HAVE_EIGEN
#define HAVE_EIGEN ${HAVE_EIGEN}
#endif
/* Define to 1 if threading building blocks were found, else 0 */
#ifndef HAVE_TBB
#define HAVE_TBB ${HAVE_TBB}
#endif
#cmakedefine HAS_WORKING_UNUSED_ATTRIBUTE 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment