mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
remove physics lib requirement for gvr-interface
This commit is contained in:
parent
60bdd206eb
commit
c3cab45d16
2 changed files with 4 additions and 3 deletions
|
@ -49,7 +49,7 @@ If you have been building other components it is possible that the OpenSSL compi
|
|||
|
||||
Download the [Intel Threading Building Blocks source](https://www.threadingbuildingblocks.org/download) and extract the tarball inside your `ANDROID_LIB_DIR`. Rename the extracted folder to `tbb`.
|
||||
|
||||
From the tbb directory, execute the following commands. This will set the compiler and archive tool to the correct ones from the NDK install and then build TBB using `ndk-build`.
|
||||
From the tbb directory, execute the following commands. This will set the compiler and archive tool to the correct ones from the NDK install and then build TBB using `ndk-build`. Then, the compiled libs are copied to a lib folder in the root of tbb directory.
|
||||
|
||||
```
|
||||
export CC=$ANDROID_NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/darwin-x86_64/bin/arm-linux-androideabi-gcc
|
||||
|
@ -57,8 +57,9 @@ export AR=$ANDROID_NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/darwin-x86_
|
|||
cd jni
|
||||
ndk-build target=android tbb tbbmalloc arch=arm
|
||||
cd ../
|
||||
mkdir lib
|
||||
cp -rf build/linux_arm_*/**/*.so lib/
|
||||
```
|
||||
```
|
||||
|
||||
####GLM
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ include_glm()
|
|||
set(REQUIRED_HIFI_LIBRARIES "shared" "networking")
|
||||
|
||||
link_hifi_libraries(${REQUIRED_HIFI_LIBRARIES})
|
||||
link_shared_dependencies()
|
||||
include_dependency_includes()
|
||||
|
||||
set(ANDROID_SDK_ROOT $ENV{ANDROID_HOME})
|
||||
set(ANDROID_APP_DISPLAY_NAME Interface)
|
||||
|
|
Loading…
Reference in a new issue