Tag: cmake

  • Oh, So There Are C++ Package Managers?

    I know I have beaten this topic up a little bit in a previous post, but when coming from a language like Python, you really get comfortable with the idea of just using pip to install all of your modules.  Need PyTorch?  Just run pip install torch and you can use it as soon as…

  • CMake Prerequisite Knowledge for Developers Transitioning to C++

    If you are like me and you come from coming to C++ from a background where you haven’t really used C++ before, the first thing you might notice is that dependency management is chaos.  In Python, you just run pip install and in JavaScript you can simply use npm, and then (hopefully) it just works. …