mirror of
https://github.com/eclipse/upm.git
synced 2025-07-01 17:31:13 +03:00
cordova: Add UPM cordova binding via Java packages
The UPM Cordova binding generator creates Cordova plugs for each Java package when BUILDCORDOVA=ON and BUILDSWIGJAVA=ON. This requires an NPM install of the UPM Cordova plugin generator. Cordova bindings are built under <build-dir>/cordova. Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
8
cmake/modules/FindCordova.cmake
Normal file
8
cmake/modules/FindCordova.cmake
Normal file
@ -0,0 +1,8 @@
|
||||
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()
|
Reference in New Issue
Block a user