From 9294a8d238bd004234f9a84788132d70319c2f09 Mon Sep 17 00:00:00 2001 From: Szilard Pall Date: Wed, 5 Dec 2012 03:19:41 +0100 Subject: [PATCH] don't warn during configuring if no GPUs were found This change avoids issuing the post-configure GPU acceleration warning if no GPUs were found in the build machine. Change-Id: I63962c43ec9a8b9ee4f5ec2d1a19d4d819419ff7 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd215f9590..3cdc44e8c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1163,9 +1163,9 @@ add_subdirectory(include) add_subdirectory(src) add_subdirectory(scripts) -# issue GPU acceleration/CUDA-related warning or error if GMX_GPU was set -# Auto and NVIDIA GPUs were detected. -if (CUDA_NOTFOUND_AUTO AND NOT GMX_GPU_DETECTION_DONE) +# Issue a warning if NVIDIA GPUs were detected, but CUDA was not found. +# Don't bother the user after the first configure pass. +if ((CUDA_NOTFOUND_AUTO AND GMX_DETECT_GPU_AVAILABLE) AND NOT GMX_GPU_DETECTION_DONE) message(WARNING "${CUDA_NOTFOUND_MESSAGE}") unset(CUDA_NOTFOUND_AUTO) unset(CUDA_NOTFOUND_MESSAGE) -- 2.22.0