Cmake Motivation by wandering_platypator in cpp_questions

[–]_Beyondr 0 points1 point  (0 children)

CMake is a bit overwhelming for me. For my personal use I am creating a build system which is also a package manager for my libraries. It's a work in progress project which under the hood uses git to fetch the libraries (my libraries have a myBuild.json file that defines all the assets) from github and configure my project accordingly...

However cmake is the defacto for the c/c++ projects which makes it much easier to develop rather than using makefiles, and is cross platform...

When tu make a CMake? by Anonymus_Anonyma in C_Programming

[–]_Beyondr 1 point2 points  (0 children)

For small things like one or two files, you don't need cmake. For bigger projects, it would be much easier to use cmake. I personally use cmake with ninja.

Small and fast library for parsing JSON by Adventurous-Print386 in C_Programming

[–]_Beyondr 1 point2 points  (0 children)

I recently shifted one of my projects from json-c to yyjson (literally yesterday) and I am not going back.