Removed extra -D from Readme examples, removed a trailing whitespace

This commit is contained in:
beaverb1ll 2016-10-27 00:23:26 -04:00
parent f4b565e168
commit faab5d4f66

View File

@ -83,7 +83,7 @@ For more details about OpenSubdiv, see [Pixar Graphics Technologies](http://grap
```
"c:/Program Files (x86)/CMake/bin/cmake.exe" ^
-G "Visual Studio 12 Win64" ^
-D -D NO_PTEX=1 -D NO_DOC=1 ^
-D NO_PTEX=1 -D NO_DOC=1 ^
-D NO_OMP=1 -D NO_TBB=1 -D NO_CUDA=1 -D NO_OPENCL=1 -D NO_CLEW=1 ^
-D "GLEW_LOCATION=*YOUR GLEW INSTALL LOCATION*" ^
-D "GLFW_LOCATION=*YOUR GLFW INSTALL LOCATION*" ^
@ -94,7 +94,7 @@ For more details about OpenSubdiv, see [Pixar Graphics Technologies](http://grap
### Linux
```
cmake -D -D NO_PTEX=1 -D NO_DOC=1 \
cmake -D NO_PTEX=1 -D NO_DOC=1 \
-D NO_OMP=1 -D NO_TBB=1 -D NO_CUDA=1 -D NO_OPENCL=1 -D NO_CLEW=1 \
-D GLEW_LOCATION="*YOUR GLEW INSTALL LOCATION*" \
-D GLFW_LOCATION="*YOUR GLFW INSTALL LOCATION*" \
@ -105,7 +105,7 @@ make
### OSX
```
cmake -D -D NO_PTEX=1 -D NO_DOC=1 \
cmake -D NO_PTEX=1 -D NO_DOC=1 \
-D NO_OMP=1 -D NO_TBB=1 -D NO_CUDA=1 -D NO_OPENCL=1 -D NO_CLEW=1 \
-D GLFW_LOCATION="*YOUR GLFW INSTALL LOCATION*" \
..