Browse Source

Add both 64 and 32 bit Android NDK paths on Windows to cover both bin cases

Josh Engebretson 9 years ago
parent
commit
be9e501338
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Build/Scripts/Windows/CompileAndroid.bat

+ 1 - 1
Build/Scripts/Windows/CompileAndroid.bat

@@ -1,3 +1,3 @@
-SET PATH=%ANDROID_NDK%\prebuilt\windows\bin\;%PATH%
+SET PATH=%ANDROID_NDK%\prebuilt\windows-x86_64\bin\;%ANDROID_NDK%\prebuilt\windows\bin\;%PATH%
 cmake -G "Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=../../../Build/CMake/Toolchains/android.toolchain.cmake -DCMAKE_BUILD_TYPE=%1 ../../../
 %ANDROID_NDK%\prebuilt\windows\bin\make.exe -j4