Skip to content

Instantly share code, notes, and snippets.

@axel18bsm
axel18bsm / CMakeLists.txt
Created May 20, 2025 19:46 — forked from erikyuzwa/CMakeLists.txt
CMakeLists.txt for Raylib projects
# CMakeLists.txt project file for Raylib projects
#
cmake_minimum_required(VERSION 3.30)
project(hello_raylib_with_cmake C)
set(CMAKE_C_STANDARD 23)
# Include the command that downloads libraries
include(FetchContent)