Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1.02 KB

File metadata and controls

50 lines (36 loc) · 1.02 KB

PacMan

ghost with a headset

CMake Author Author

  • Clone the project

  • Install dependencies :

    • Ubuntu :
      sudo apt install libsdl2-dev -y
    • NixOS :
      nix-shell -p cmake SDL2
  • To compile the first time :

mkdir build && cd build
cmake -S ../ -B ./
  • Then to rebuild, from the build directory :
cmake --build ./ -j8
  • To launch the game :
./PacMan
  • To clean and recompile from the root of the project :
./clean-and-compile.sh
  • To generate the Doxygen documentation from the root of the project :
doxygen Doxyfile