Search code examples
c++open-sourceproject-management

Is there C++ project manager like NPM?


I used to have NPM to manage my javascript project like npm init command or etc. but I'm curious about there's a C/C++ open source project manager that manage like NPM. If there is, what's name of C++ project manager?


Solution

  • CMake is a good project build management tool, but it does not have the dependency management capabilityies NPM or Maven have. You can check out CPM, but it is not actively maintained anymore.

    The Maven Nar Plugin for C/C++ projects is another option, but sadly its not very active either. See also the suggestions in the answer to a similar question regarding Maven.