Browse Source

Merge pull request #65 from tete-github/patch-1

Update Compiling.md
Bjorn 3 years ago
parent
commit
2767e4ab7a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      guides/Compiling.md

+ 3 - 3
guides/Compiling.md

@@ -229,13 +229,13 @@ $ mkdir build
 $ cd build
 $ cmake \
     -D LOVR_USE_VRAPI=ON \
-    -D CMAKE_TOOLCHAIN_FILE=/path/to/ndk/build/cmake/android.toolchain.cmake \
-    -D ANDROID_SDK=/path/to/android \
+    -D CMAKE_TOOLCHAIN_FILE=/path/to/ndk-bundle/build/cmake/android.toolchain.cmake \
+    -D ANDROID_SDK=/path/to/android/sdk \
     -D ANDROID_ABI=arm64-v8a \
     -D ANDROID_NATIVE_API_LEVEL=26 \
     -D ANDROID_BUILD_TOOLS_VERSION=29.0.3 \
     -D ANDROID_KEYSTORE=/path/to/test.keystore \
-    -D ANDROID_KEYSTORE_PASS=PASS:hunter2 \
+    -D ANDROID_KEYSTORE_PASS=pass:hunter2 \
     ..
 $ cmake --build .
 ```