friendlyanon
friendlyanon
I cleaned up things around the CPack config and pkgconfig. The CPack config with the project specific defaults is configured to the `CPack(Source)Config-ctre.cmake` file in the root binary directory. These...
Yes, the situation around docs isn't the prettiest right now. Also mentioned in https://github.com/friendlyanon/cmake-init/issues/41#issuecomment-1004035454 I would be happy with an alternative solution.
The default Doxygen skin is really not good and as you answered your own question, it significantly improves the quality of the output. Having one less thing to setup in...
m.css also provides a quick search that I **really really** like. It's a small thing, but it's gives that polished feel and makes looking for things much easier. Check the...
In fact, I'm going to mention it separately here that I really don't like how cppreference removed their own search feature and instead co-opted to use DDG. You used to...
CMake 3.20 introduced presets version 2, which is what could fix #34. This version also added the `--test-dir` argument to `ctest` which enables the developer to run tests from any...
The requirement is not raised willy-nilly just for the sake of raising it. Especially the range form of the command, for which I have not found a single use-case yet....
In C++20, the standard library's headers are usable as header units in modules, however C++23 provides a much better interface via `import std;`, so coupled with no compiler properly supporting...
The docs code is already optional (`BUILD_MCSS_DOCS`) and I value the presence of docs greatly. The code is also relatively minimal and easy to strip/modify. However, m.css seems to have...
You need to install a compiler, a build system (default on Linux and MacOS are `make` as the error suggests) and you are also missing vcpkg. vcpkg is assumed to...