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)