- Get cmake and make installed
- On Windows make can be installed with chocolatey
- On Mac these can be installed with Homebrew
- On Linux they can be installed with your package manager
Debug mode:
mkdir debug
cd debug
cmake .. -G "Unix Makefiles"
make
./game-engine
Release mode (faster):
mkdir release
cd release
cmake .. -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
make
./game-engine
- If you encounter any openal32.dll issues on Windows, simply get the installer here
Remember to add new classes to CMakeLists.txt under the add_executable command
To run the program at any point, e.g., when testing new code, simply run the following commands in the debug / release directory created above:
make
./game-engine
- multiplayer
- mix between eastward and celeste