raylib/projects/CMake
2025-04-28 11:57:53 -04:00
..
CMakeLists.txt cmake: replace custom variable with built-in one 2025-04-28 11:57:53 -04:00
core_basic_window.c Remove PLATFORM_RPI (#3232) 2023-09-07 17:42:28 +02:00
README.md Projects: Fix CMake example project (#4332) 2024-09-21 23:12:48 +02:00

raylib CMake Project

This provides a base project template which builds with CMake.

Usage

To compile the example, use one of the following dependending on your build target...

Desktop

Use the following to build for desktop:

cmake -B build
cmake --build build

Web

Compiling for the web requires the Emscripten SDK:

mkdir build
cd build
emcmake cmake .. -DPLATFORM=Web -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXECUTABLE_SUFFIX=".html"
emmake make