We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb137d9 commit f8eb283Copy full SHA for f8eb283
1 file changed
tools/hxcpp/Setup.hx
@@ -434,6 +434,14 @@ class Setup
434
else
435
{
436
root = defines.get("ANDROID_NDK_ROOT");
437
+
438
+ if (!FileSystem.exists(root)) {
439
+ Log.error('ANDROID_NDK_ROOT ["$root"] directory does not exist');
440
+ }
441
+ if (!FileSystem.isDirectory(root)) {
442
+ Log.error('ANDROID_NDK_ROOT ["$root"] is not a diretory');
443
444
445
Log.setup("\x1b[33;1mUsing Android NDK root: " + root + "\x1b[0m");
446
}
447
0 commit comments