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
Étiquette : Programming
How to create a multi-platform job on Azure Pipelines
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to create a multi-platform job on Azure Pipelines. Self promotion: You can find other articles on my website 😉 Problematic When setting up your continuous integration and delivery environments on Azure Pipelines, or on any CI/CD system, you may… Lire la suite How to create a multi-platform job on Azure Pipelines
How to expect a compilation error with Azure Pipelines
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to expect a compilation error with Azure Pipelines. Self promotion: You can find other articles on my website Problematic Most of the time, when developers interacts with Azure Pipelines, and CI in general, they want to make sure that… Lire la suite How to expect a compilation error with Azure Pipelines
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
How to use alternative operators in C++ with Visual Studio
I'm Xavier Jouvenot and in this small post, we are going to see how to use alternative operators in C++ with Visual Studio. Self promotion: You can find other articles on my website 😉 Problematic In C++, as you may already know, there are primary operators available to us since the beginning of C++, as… Lire la suite How to use alternative operators in C++ with Visual Studio
How to automatically unpack a mpkg file on OSX
I'm Xavier Jouvenot and in this small post, we are going to see how to automatically unpack a mpkg file on OSX. Self promotion: You can find other articles on my website 😉 Problematic When working on CI setup for some projects, I ended up having to install a program on a OSX environment which… Lire la suite How to automatically unpack a mpkg file on OSX
How to get the profile picture of a GitHub account
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to get the profile picture of a GitHub account. Self promotion: You can find other articles on my website 😉 Small Backstory When following a GitHub Learning Lab course, I ended up creating a portfolio using Markdown. During this… Lire la suite How to get the profile picture of a GitHub account
How to set the permission to an executable versionnized on git
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to set the permission to an executable file versionnized on git. Self promotion: You can find other articles on my website 😉 Problematic If you encountered this article, you may already be familiar with the problem, but I am… Lire la suite How to set the permission to an executable versionnized on git
Chocolatey and Gist
Hello ! I'm Xavier Jouvenot and in this small post, we are going to see how to link a gist to a chocolatey package maintainer repository. Self promotion: You can find other articles on my website 😉 Introduction I assume that if you click to see this post, you already know what [Chocolatey] and [Gist]… Lire la suite Chocolatey and Gist
Quick Tip – How to find the difference between two numbers
Hello ! I'm Xavier Jouvenot and in this small post, I am going to explain how to find the difference between two numbers. Self promotion: You can find other articles on Android development on my website 😉 Subtracting number isn't enough ? First, let's defines precisely what a difference is and why a subtraction isn't… Lire la suite Quick Tip – How to find the difference between two numbers