CMake
July 5, 2025•221 words
Great CMake Tutorial from Kea Sigma Delta
https://keasigmadelta.com/blog/cmake-tutorial-getting-started/
Update:
Made two changes to get it to work
1 - In CMakeLists.txt change first line from cmake_minimum_required(VERSION 3.24)
to cmake_minimum_required(VERSION 3.20...4.0.2)
2- Changed Raylib version to 5.5.
Contents:
/** Main.cpp
*
* A simple Raylib example.
*/
#include "raylib.h"
#include <cstdlib>
int main(int argc, const char **argv) {
// Initialization
const int scre...
Read post