From cf7c6f19121ef8b75fe3f7d2f5f46d5beb0dcbf9 Mon Sep 17 00:00:00 2001 From: Adam Ransom <=> Date: Tue, 13 Dec 2016 19:11:43 +0900 Subject: [PATCH] Fix README cmake instructions for Unix; Given that in the example we clone openvr into the same directory as lovr and then proceed to `cd` into the `build` directory, the `-DOPENVR_DIR` argument needs to point to 2 directories about the current directory. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78a6cd55..003ec243 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Next, build using CMake: ```sh mkdir build cd build -cmake .. -DOPENVR_DIR=../openvr +cmake .. -DOPENVR_DIR=../../openvr cmake --build . ```