mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 17:30:01 +03:00

The Cordova plugins for each Java packages will be created if BUILDCORDOVA=ON and BUILDSWIGJAVA=ON.
8 lines
340 B
CMake
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() |