mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 22:22:23 +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
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue