upm/cmake/modules/FindUpmCordovaGenerator.cmake
Noel Eck 8db0819860 Cordova: Renamed cmake Find module for bindings
Renamed find module from FindCordova to FindUpmCordovaGenerator to be
more descriptive with the intent of the find module.

Signed-off-by: Noel Eck <noel.eck@intel.com>
2018-03-15 13:33:38 -07:00

8 lines
340 B
CMake

find_program(UPM_CORDOVA_BINDING NAMES upm-cordova-binding
)
if(UPM_CORDOVA_BINDING)
message(STATUS "The npm package to build cordova bindings found at ${UPM_CORDOVA_BINDING}")
else()
message(FATAL_ERROR "Unable to find the npm package for building cordova bindings, please install by 'npm install -g upm-cordova-binding'")
endif()