/OculusHmdOrientation

Minimal application to get orientation of the Oculus Rift HMD

Primary LanguageC++MIT LicenseMIT

OculusHmdOrientation

Minimal application to get orientation of the Oculus Rift HMD.

Mostly inspired from the Minimal Oculus Application of the official OculusVR Wiki.

License

Copyright (c) 2014 SĂ©bastien Rombauts (sebastien.rombauts@gmail.com)

Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT)

### Getting and Building the dependencies

  1. Get the submodule (OculusSDK)
git submodule init
git submodule update

### Building the application

On Linux :

cmake .
cmake --build .     # of simply "make"

On Windows :

cmake . -G "Visual Studio 10"
cmake --build .     # or simply [open and build solution]