Add highlighting to the code blocks
This commit is contained in:
parent
45c002225f
commit
971bd0b3cb
1 changed files with 6 additions and 6 deletions
12
README.md
12
README.md
|
|
@ -25,26 +25,26 @@ For Mac, the following project is recommended, as it contains all the dependenci
|
|||
|
||||
After you have the packages installed, `cd` into your projects directory, and do the following to clone:
|
||||
|
||||
```
|
||||
```sh
|
||||
git clone https://github.com/dpjudas/VkDoom
|
||||
```
|
||||
|
||||
Afterwards, `cd` into it
|
||||
|
||||
```
|
||||
```sh
|
||||
cd VkDoom
|
||||
```
|
||||
|
||||
Make a build folder, then `cd` into it
|
||||
|
||||
```
|
||||
```sh
|
||||
mkdir build
|
||||
cd build
|
||||
```
|
||||
|
||||
For Windows, run the following to prepare your build environment and the second command will build:
|
||||
|
||||
```
|
||||
```sh
|
||||
cmake -A x64 ..
|
||||
cmake --build . --config Release -- -maxcpucount
|
||||
```
|
||||
|
|
@ -53,14 +53,14 @@ cmake --build . --config Release -- -maxcpucount
|
|||
|
||||
For Linux, run the following to prepare your build environment and the second command will build:
|
||||
|
||||
```
|
||||
```sh
|
||||
cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||
make -j $(nproc)
|
||||
```
|
||||
|
||||
For Mac, if you're using zdoom-macos-deps, simply cd into it and type the following:
|
||||
|
||||
```
|
||||
```sh
|
||||
./build.py --target vkdoom
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue