Browse Source

rm language from Compiling code fence;

bjorn 7 years ago
parent
commit
c25bcb7186
1 changed files with 9 additions and 9 deletions
  1. 9 9
      guides/Compiling.md

+ 9 - 9
guides/Compiling.md

@@ -26,14 +26,14 @@ Windows (CMake)
 
 First, install [lovr-deps](https://github.com/bjornbytes/lovr-deps):
 
-```sh
+```
 cd lovr
 git clone --recursive https://github.com/bjornbytes/lovr-deps deps
 ```
 
 Next, use CMake to generate the build files:
 
-```sh
+```
 mkdir build
 cd build
 cmake ..
@@ -42,7 +42,7 @@ cmake ..
 This should output a Visual Studio solution, which can be built using Visual Studio.  Or you can
 just build it with CMake:
 
-```sh
+```
 cmake --build .
 ```
 
@@ -60,13 +60,13 @@ Unix (CMake)
 First, clone [OpenVR](https://github.com/ValveSoftware/openvr).  For this example, we'll clone
 `openvr` into the same directory that lovr was cloned into.
 
-```sh
+```
 git clone --branch v1.0.5 https://github.com/ValveSoftware/openvr.git
 ```
 
 Next, install the other dependencies above using your package manager of choice:
 
-```sh
+```
 brew install assimp glfw3 luajit physfs freetype openal-soft
 ```
 
@@ -75,7 +75,7 @@ On OSX, you'll need to set the `DYLD_LIBRARY_PATH` environment variable to be
 
 Next, build using CMake:
 
-```sh
+```
 mkdir build
 cd build
 cmake .. -DOPENVR_DIR=../../openvr
@@ -84,7 +84,7 @@ cmake --build .
 
 The lovr executable should exist in `lovr/build` now.  You can run a game like this:
 
-```sh
+```
 ./lovr /path/to/myGame
 ```
 
@@ -99,7 +99,7 @@ branch](https://github.com/bjornbytes/emscripten/tree/lovr) of Emscripten.
 
 Unix:
 
-```sh
+```
 mkdir build
 cd build
 emcmake cmake -DCMAKE_BUILD_TYPE=Release ..
@@ -108,7 +108,7 @@ emmake make -j2
 
 Windows (from a Visual Studio Command Prompt, make sure the Emscripten SDK is on PATH):
 
-```sh
+```
 mkdir build
 cd build
 emcmake cmake -G "NMake Makefiles" ..