Include compile instructions.
SRB2 guide doesn't really work the same for this anymore.
This commit is contained in:
parent
869bf3bd9d
commit
007f09edc3
1 changed files with 21 additions and 1 deletions
22
README.md
22
README.md
|
|
@ -11,7 +11,27 @@
|
|||
|
||||
## Compiling
|
||||
|
||||
See [SRB2 Wiki/Source code compiling](http://wiki.srb2.org/wiki/Source_code_compiling). The compiling process for SRB2Kart is largely identical to SRB2.
|
||||
Linux:
|
||||
```
|
||||
git clone https://codeberg.org/NepDisk/blankart.git
|
||||
cd blankart
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j$(nproc)
|
||||
```
|
||||
|
||||
Windows MSYS2:
|
||||
```
|
||||
git clone https://codeberg.org/NepDisk/blankart.git
|
||||
cd blankart
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -G "MSYS Makefiles" ..
|
||||
./_deps/sdl2_mixer-src/external/download.sh
|
||||
cmake -G "MSYS Makefiles" ..
|
||||
make -j$(nproc)
|
||||
```
|
||||
|
||||
## Disclaimer
|
||||
Kart Krew is in no way affiliated with SEGA or Sonic Team. We do not claim ownership of any of SEGA's intellectual property used in SRB2.
|
||||
|
|
|
|||
Loading…
Reference in a new issue