From cf75200231df54f91be33803b38d30a5264085b0 Mon Sep 17 00:00:00 2001 From: Dale Glass Date: Sun, 11 Jul 2021 19:22:56 +0200 Subject: [PATCH] Have cmake be verbose about whether NPM has been detected --- tools/CMakeLists.txt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 5de2f6fdf8..ce1e8c4d71 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,9 +1,13 @@ # add the tool directories +message(STATUS "Checking for npm") find_npm() if (NPM_EXECUTABLE) - add_subdirectory(jsdoc) - set_target_properties(jsdoc PROPERTIES FOLDER "Tools") + message(STATUS "Checking for npm - found ${NPM_EXECUTABLE}, will build jsdoc") + add_subdirectory(jsdoc) + set_target_properties(jsdoc PROPERTIES FOLDER "Tools") +else() + message(NOTICE "Checking for npm - not found, jsdoc won't be genereated. Tab completion in the js console won't work!") endif() function(check_test name)