kiot-cordova-plugin-home-console
Version:
This plugin allows your Android app to download and install compressed updates without the Google Play Store.
23 lines (17 loc) • 569 B
Plain Text
# src/android/rockchipinterface/jni/CMakeLists.txt
cmake_minimum_required(VERSION 3.10.2)
# Set the project name
project(kiot_native_libraries)
# Add the RockChip Interface library
add_library(rockchipinterface SHARED
input_reader.cpp)
# Add the Relay Control library
add_library(relaycontrol SHARED
relay_control.cpp)
# Find the Android log library
find_library(log-lib log)
# Link the libraries
target_link_libraries(rockchipinterface
${log-lib})
target_link_libraries(relaycontrol
${log-lib})