Skip to main content
GameDev.net gamedev.net

CMake

12 items across game development

12 results

Tutorial

Beginner Graphics Programming Study Guide

This is a roadmap for learning the basics of graphics programming on one's own, from free online resources. Introduction About This is a roadmap for learning basic graphics programming on …

raynmetal ·
computer graphics Shaders linear algebra Quaternions C++ +6
Forum Post

Reply in: First post and first C++ question

bvanevery said:I just monitor what they have and haven't accomplished in gamedom from time to time. I don't like rust, especially how it forces severe constraints on architecture, and also …

RmbRT ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

bvanevery said:Not really how anyone should proceed or feel about CMake. Better to realize that CMake is its own thing with its own concerns and method of operation. A long …

RmbRT ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

snnooze wrote: The error I've got every time is SDL3_image can't find SDL3 (if needed I can send more informations) Hello! Congrats on taking your plunge. Note that you are …

bvanevery ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

Good luck with your C++ gamedev journey. My first game ever was a tower defense back in 2012 or something, with SDL. Not sure whether that was SDL 1 or …

RmbRT ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

Hello (sorry I don't find the edit button on my previous post) I've just succeeded by finding that example on the SDL Github : https://github.com/Ravbug/sdl3-sample/blob/main/CMakeLists.txt I still have to clean …

snnooze ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

Hello, RmbRT wrote: @snnooze you can also go the global install route and use cmake --install to compile SDL3, which should then allow SDL3_image to find it. It's a bit …

snnooze ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

@snnooze you can also go the global install route and use cmake --install to compile SDL3, which should then allow SDL3_image to find it. It's a bit less clean but …

RmbRT ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

Hello, RmbRT wrote: Have you tried this? cmake -DSDL3_DIR=/path/to/sdl3/build ..Copy This needs to be passed to the SDL3_image's CMake file. In case your error is SDL3_DIR-NOTFOUND. I have no clue …

snnooze ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

snnooze wrote: I try since about 4 or 5 nights to link SDL3 and SDL3_image to a project using a CMakeLists.txt file. Impressive endurance. I would have given up after …

JoeJ ·
C++ CMake Introduction
Forum Post

Reply in: First post and first C++ question

Have you tried this? cmake -DSDL3_DIR=/path/to/sdl3/build .. This needs to be passed to the SDL3_image's CMake file. In case your error is SDL3_DIR-NOTFOUND. I have no clue how to make …

RmbRT ·
C++ CMake Introduction
Forum Topic

First post and first C++ question

Hello, I'm new here so I will start by the begining.My real name is Fabrice, I'm 45 and I live in France. I have decided a few days ago to …

snnooze ·
C++ CMake Introduction