nishbox/BUILDING.md
2025-04-18 11:35:59 +09:00

567 B

Building the game

Building NishBox is simple.

*nix

  1. Run premake5 gmake --opengl=glx or premake5 gmake --opengl=glfw.
  2. Run gmake or make, depending on the platform.

MSVC

  1. Run premake5 vs<version> --opengl=wgl --cc=msc or premake5 vs<version> --opengl=glfw --cc=msc.

    <version> depends on the Visual Studio version. On VS2008, it should be 2008.

    GLFW backend is untested.

  2. Run msbuild NishBox.sln.

Note

*nix ones are tested on NetBSD/amd64 and Debian GNU/Linux 12 x86_64.

MSVC ones are tested on VS2008/VS2010.