Skip to content
Grant Handy edited this page Dec 7, 2020 · 2 revisions

Requirements: A C-compiler (gcc or clang) and make

If the requirements are met this should build it:

make

This will build the qvm files and so/dll files. There can be packed in a pk3 file like everything else.

Automation

For my convenience I use a script the builds the qvm-files, packs them as a mod and launched the game with the mod selected. You can use the scripts too:

Go to the linux script folder:

cd linux_scripts

In this folder create a file called supermake.local In that file put:

# The full path to start OpenArena
BINNAME=/path/to/openarena-0.8.8/openarena.x86_64
# The architecture. Use "i386" for 32 bit (default) or "x86_64" for 64 bit.
ARCH=x86_64

Now the game can be compiled, packed and started with:

./supermake
Clone this wiki locally