Not setting android-ndk resulted in a "set ndk-path" error.

This commit is contained in:
Christoffer Lerno
2025-07-29 11:33:40 +02:00
parent 9d2be2851b
commit fa9ba3f607
2 changed files with 2 additions and 1 deletions

View File

@@ -1473,7 +1473,7 @@ BuildOptions parse_arguments(int argc, const char *argv[])
const char *ndk_path = getenv("ANDROID_NDK");
if (!ndk_path)
{
FAIL_WITH_ERR("Can't find Android NDK, please set --ndk-path.");
FAIL_WITH_ERR("Can't find Android NDK, please set --android-ndk.");
}
build_options.android.ndk_path = strdup(ndk_path);
}