From 2348fe1bdc9a7c1c7b381901f42f74f3ac4bb5d9 Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.r.kempf@gmail.com> Date: Wed, 15 Apr 2015 16:25:55 +0200 Subject: [PATCH] [bugfix] Fix wrong named argument in dune_register_package_flags usage The Metis test used the wrong one and I copied it for PTScotch... :/ --- cmake/modules/FindMETIS.cmake | 2 +- cmake/modules/FindPTScotch.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/FindMETIS.cmake b/cmake/modules/FindMETIS.cmake index c6b662656..77ca3543e 100644 --- a/cmake/modules/FindMETIS.cmake +++ b/cmake/modules/FindMETIS.cmake @@ -94,5 +94,5 @@ endif(METIS_FOUND) # register all METIS related flags if(METIS_FOUND) dune_register_package_flags(LIBRARIES "${METIS_LIBRARIES}" - INCLUDE_DIRECTORIES "${METIS_INCLUDE_DIRS}") + INCLUDE_DIRS "${METIS_INCLUDE_DIRS}") endif() diff --git a/cmake/modules/FindPTScotch.cmake b/cmake/modules/FindPTScotch.cmake index 2b1ece39b..6a0436d31 100644 --- a/cmake/modules/FindPTScotch.cmake +++ b/cmake/modules/FindPTScotch.cmake @@ -75,7 +75,7 @@ if(PTSCOTCH_FOUND) "Library directory: ${PTSCOTCH_LIBRARIES}\n\n") dune_register_package_flags(LIBRARIES "${PTSCOTCH_LIBRARIES}" - INCLUDE_DIRECTORIES "${PTSCOTCH_INCLUDE_DIRS}") + INCLUDE_DIRS "${PTSCOTCH_INCLUDE_DIRS}") endif(PTSCOTCH_FOUND) mark_as_advanced(PTSCOTCH_INCLUDE_DIR PTSCOTCH_LIBRARIES HAVE_PTSCOTCH) -- GitLab