From 929aa96cd3f4c35c33f1efba48a7815b26ea9633 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Tue, 26 Oct 2021 17:36:48 +0200 Subject: [PATCH] [cmake] Fix warning about mismatch in gmsh package name --- cmake/modules/FindGmsh.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/FindGmsh.cmake b/cmake/modules/FindGmsh.cmake index 1170279bac..13fe530c46 100644 --- a/cmake/modules/FindGmsh.cmake +++ b/cmake/modules/FindGmsh.cmake @@ -36,13 +36,13 @@ find_program(GMSH_EXECUTABLE include(FindPackageHandleStandardArgs) find_package_handle_standard_args( - "gmsh" + "Gmsh" DEFAULT_MSG GMSH_EXECUTABLE ) # set macros for config.h -set(HAVE_GMSH ${gmsh_FOUND}) +set(HAVE_GMSH ${Gmsh_FOUND}) set(GMSH_EXECUTABLE ${GMSH_EXECUTABLE}) # text for feature summary -- GitLab