Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 548 Bytes

File metadata and controls

25 lines (17 loc) · 548 Bytes
img

How to build (Linux)

Requirements:

  • CMake >= 3.15
  • C++20 toolchain (g++ or clang++)
  • git (optional, only if setting USE_VENDORED_RAYLIB=OFF)
  1. Clone the repository:

    git clone https://github.com/Vukzilla/Flappy-Bird-Raylib
    cd Flappy-Bird-Raylib
    
  2. Create build dir and configure

    mkdir -p build && cd build
    cmake ..
    
  3. Build

    cmake --build .