diff --git a/app/Cpp b/app/Cpp new file mode 100644 index 0000000..47041d4 --- /dev/null +++ b/app/Cpp @@ -0,0 +1,26 @@ +cmake_minimum_required(VERSION 3.22.1) + +project("env") + +add_library( # Sets the name of the library. + env + + # Sets the library as a shared library. + SHARED + + # Provides a relative path to your source file(s). + native-lib.cpp ) + +find_library( # Sets the name of the path variable. + log-lib + + # Specifies the name of the NDK library that + # you want CMake to locate. + log ) + +target_link_libraries( # Specifies the target library. + env + + # Links the target library to the log library + # included in the NDK. + ${log-lib} )