From 72ffa7902e78cfa2b7c23840f2c0a3f06e743f1b Mon Sep 17 00:00:00 2001 From: zakariyyayahayausman211-maker Date: Fri, 19 Sep 2025 07:37:43 +0100 Subject: [PATCH] Create Cpp --- app/Cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/Cpp 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} )