mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-05 21:12:42 +02:00
Have cmake be verbose about whether NPM has been detected
This commit is contained in:
parent
96ad5e971b
commit
cf75200231
1 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,13 @@
|
||||||
# add the tool directories
|
# add the tool directories
|
||||||
|
message(STATUS "Checking for npm")
|
||||||
find_npm()
|
find_npm()
|
||||||
|
|
||||||
if (NPM_EXECUTABLE)
|
if (NPM_EXECUTABLE)
|
||||||
add_subdirectory(jsdoc)
|
message(STATUS "Checking for npm - found ${NPM_EXECUTABLE}, will build jsdoc")
|
||||||
set_target_properties(jsdoc PROPERTIES FOLDER "Tools")
|
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()
|
endif()
|
||||||
|
|
||||||
function(check_test name)
|
function(check_test name)
|
||||||
|
|
Loading…
Reference in a new issue