quakespasm/README.md

24 lines
1.3 KiB
Markdown
Raw Normal View History

2022-02-08 19:06:54 +00:00
# Nazi Zombies: Portable Quakespasm
## About
2022-02-09 16:15:46 +00:00
This repository contains NZ:P Team's fork of [Quakespasm](https://sourceforge.net/projects/quakespasm/), with support for building to Nintendo Switch (thanks to fgsfdsfgs) and PS VITA (thanks to Rinnegatamante). It contains many enhancements to attempt parity with our fork of [dQuakePlus](https://github.com/nzp-team/dquakeplus).
2022-02-08 19:06:54 +00:00
## Building for Nintendo Switch (Advanced)
Building requires a full install of [libnx](https://switchbrew.org/wiki/Setting_up_Development_Environment). Follow the instructions by either installing manually or by using the Docker container linked.
Now that libnx is installed, you can build the Switch binaries:
```bash
make -f Makefile.nx
```
2022-02-09 16:15:46 +00:00
The `.NRO` will be built at `build/nx`. We also provide binaries on the [Releases](https://github.com/nzp-team/quakespasm/releases/tag/bleeding-edge) page.
2022-02-08 19:06:54 +00:00
## Building for PlayStation VITA (Advanced)
Similarly as building for NX, building a `.VPK` will require the [Vita SDK](https://vitasdk.org/). We recommend `gnuton`'s Docker container, it can be found [here](https://hub.docker.com/r/gnuton/vitasdk-docker).
You can build like so:
```bash
make -f Makefile.vita
```
2022-02-09 16:15:46 +00:00
The `.VPK` will be built at `build/vita`. We also provide binaries on the [Releases](https://github.com/nzp-team/quakespasm/releases/tag/bleeding-edge) page.