browser/external/raylib-cpp-4.5.1/projects/Make/README.md
2023-09-27 15:02:24 -04:00

766 B

raylib-cpp Make Example Project

The Raylib C++ Starter Kit, put together by CapsCollective, uses make to compile a raylib-cpp starter project.

Build

  1. Check out the repository

    git clone https://github.com/CapsCollective/raylib-cpp-starter.git
    
  2. Build the project

    cd raylib-cpp-starter
    
    # Linux & macOS
    make setup
    make
    
    # Windows
    mingw32-make setup
    mingw32-make
    

Documentation

See the Raylib C++ Starter project for more documentation.

Credits