How to, Open Source

How to easily and quickly read/play an audio file in C++

Hello! I'm Xavier Jouvenot and in this small post, we are going to see how to easily and quickly read/play an audio file in C++. Self promotion: You can find other articles on my website 😉 Problematic In C++, there are sadly some operations that require a lot of boilerplate code to do some simple… Lire la suite How to easily and quickly read/play an audio file in C++

Publicité
How to, Open Source, Programming

How to fix undefined _futimens symbol in LLVM on OSX

Hello ! I'm Xavier Jouvenot and in this blog post, we are going to see how to correctly fix an error with undefined "_futimens" symbol in LLVM on OSX. Self promotion: You can find other articles on my website Problematic When integrating the latest version of LLVM with your OSX project, you may have encountered… Lire la suite How to fix undefined _futimens symbol in LLVM on OSX

How to

How to correctly create a CMake function with proper arguments

I'm Xavier Jouvenot and in this small post, we are going to see how to correctly create a CMake function with proper arguments. Self promotion: You can find other articles on my website 😉 Problematic In CMake, like in many other languages, it is possible to create and use functions. Unlike in other languages, the… Lire la suite How to correctly create a CMake function with proper arguments

How to, Open Source

How to get the version of a program in CMake

I'm Xavier Jouvenot and in this small post, we are going to see how to get the version of a program in CMake. Self promotion: You can find other articles on my website 😉 Problematic When interacting with other programs through the cmake language, you may have encountered some problem when updating those programs, such… Lire la suite How to get the version of a program in CMake