Embedding Binary Data in Executable with CMake

2020-11-30 cmake

Embedding Arbitrary Data in Executable with CMake Sometimes you need to include some binary data into an executable. It’s a lot easier to ... Read More

Embedding Git Hash with CMake

2020-11-27 cmake git

Using Git Commit Hash in CMake Project Often times it’s very useful to include the version number into the software that you are building. Even ... Read More

Automatic CMake Header Dependency

2019-12-27 cmake c++

Often times 3rd party dependencies can be the hardest part of setting up a C++ project. CMake has eased this pain, but it is still often quite ... Read More

CMake Dependencies using Fetch Content

2019-01-27 opengl cmake

I recently have been wanted to play around a bit with learning the Vulkan graphics API. Before I was able to get started with that I needed a couple ... Read More