Building a Cross-Platform C++ GUI App with CMake, Raylib, and Dear ImGui
I want to build cross-platform GUI apps in C++, and I’ve heard that Dear ImGui is awesome. So today, I’m […]
I want to build cross-platform GUI apps in C++, and I’ve heard that Dear ImGui is awesome. So today, I’m […]
So, you want to program in C++ on Linux? Here’s how to set up your “dev. environment” quickly. It’s mostly easy, with one potential pitfall…GCC, CMake & VS CodeHere’s what we’re going to install: GCC – the C/C++ compiler that’s included with Linux CMake – the de-facto build system for C++ (you’ll find it almost […]
My previous CMake tutorial taught the basics: how to compile multiple source files into one program. That’s great and all, but you’re almost guaranteed to need third-party libraries when writing something that’s actually useful. You don’t want to be writing all that code yourself. So, today we’re going to tackle linking your program to third-party […]