|
|
|
|
|
by MiddleMan5
1594 days ago
|
|
I've used CMake for a number of larger projects. When you start having to deal with external dependencies or cross platform support it definitely fills in some of the holes in the C-style build ecosystems One of the things I've never been a fan of is that for whatever reason, the build steps that you see in basically every project are:
- mkdir ./build
- cd ./build
- cmake configure ../
- make build Has no one thought of simplifying that?? |
|