update c++ complication rules

This commit is contained in:
dian.yuan 2026-01-15 14:38:22 +08:00
parent 3fd719e30d
commit ae39851162
8 changed files with 166 additions and 15 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
if [ ! -d "$NDK_PATH" ]; then
echo "Error: NDK_PATH '$NDK_PATH' not found."
echo "Please set NDK_PATH environment variable to your Android NDK directory."
exit 1
fi
$NDK_PATH/ndk-build \
NDK_PROJECT_PATH=. \
APP_BUILD_SCRIPT=./Android.mk \
NDK_APPLICATION_MK=./Application.mk