From f7a1381daeef2895fe513937940859598b03c324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=BCthing?= <muething@dune-project.org> Date: Wed, 8 Apr 2015 18:05:21 +0200 Subject: [PATCH] Revert "[CMake][ParMETIS] Fix some typos in dune_register_package_flags() call" This reverts commit 5f0534019596f5b530bab5e17a7dd6ae8c72fed3. I was a little hasty in cherry-picking this from the dune_enable_all_packages() branch, as it needs some infrastructure from over there. --- cmake/modules/FindParMETIS.cmake | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmake/modules/FindParMETIS.cmake b/cmake/modules/FindParMETIS.cmake index 010d9c7f3..ec5bb6b88 100644 --- a/cmake/modules/FindParMETIS.cmake +++ b/cmake/modules/FindParMETIS.cmake @@ -98,9 +98,10 @@ if(PARMETIS_FOUND) "Library directory: ${PARMETIS_LIBRARIES}\n\n") endif(PARMETIS_FOUND) -# register all ParMETIS related flags +#add all parmetis related flags to ALL_PKG_FLAGS, this must happen regardless of a target using add_dune_parmetis_flags if(PARMETIS_FOUND) - dune_register_package_flags(COMPILE_DEFINITIONS "ENABLE_PARMETIS=1" - LIBRARIES "${PARMETIS_LIBRARIES}" - INCLUDE_DIRS "${PARMETIS_INCLUDE_DIRS}") + foreach(dir ${PARMETIS_INCLUDE_DIRS}) + set_property(GLOBAL APPEND PROPERTY ALL_PKG_FLAGS "-I${dir}") + endforeach() + set_property(GLOBAL APPEND PROPERTY ALL_PKG_LIBS "${PARMETIS_LIBRARIES}") endif() -- GitLab