Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 322 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 322 Bytes

Build C++ JNI shared library

mkdir build
cd build
cmake ../
make

Compile the Java file

cd ../
javac JNIJavaSample.java

Run the Java class

java - -Djava.library.path=./build JNIJavaSample

Run using the sh file

chmod +x build_n_run.sh
./build_n_run.sh