From 806d4f1879fd9c8797ddb81461bb96007eae7e74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Thu, 23 Jan 2014 08:26:39 +0100 Subject: [PATCH] [CMake][release] Do not error out if suggested module not found. This fixes FS#1422. --- cmake/modules/DuneMacros.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/modules/DuneMacros.cmake b/cmake/modules/DuneMacros.cmake index aa6ff9245..4793b69fd 100644 --- a/cmake/modules/DuneMacros.cmake +++ b/cmake/modules/DuneMacros.cmake @@ -102,7 +102,8 @@ macro(find_dune_package module) # use pkg-config find_package(PkgConfig REQUIRED) pkg_check_modules (${module} ${module}) - if(NOT ${module}_FOUND) + # error out if required module is not found + if((NOT ${module}_FOUND) AND (${ARGV} MATCHES ".*REQUIRED")) message(FATAL_ERROR "Could not find module ${module}.") endif() # compute the path to the libraries -- GitLab