Notes about compiling gotchas;

This commit is contained in:
bjorn 2016-10-18 13:02:02 -07:00
parent 53409920c6
commit 851054ae01
2 changed files with 4 additions and 1 deletions

View File

@ -84,7 +84,7 @@ else()
set(LOVR_OPENVR ${OPENVR_DIR}/lib/linux32/libopenvr_api.so)
endif()
else()
message(FATAL_ERROR "Please specify the location of OpenVR (-DOPENVR_DIR=/path/to/openvr)")
message(FATAL_ERROR "Please specify the absolute location of OpenVR (-DOPENVR_DIR=/path/to/openvr)")
endif()
endif()

View File

@ -55,6 +55,9 @@ Next, install the other dependencies above using your package manager of choice:
brew install assimp glfw3 luajit
```
On OSX, you'll need to set the `DYLD_LIBRARY_PATH` environment variable to be
`/path/to/openvr/lib/osx32`.
Next, build using CMake:
```sh