Claus Klein

Results 179 comments of Claus Klein

see https://github.com/ClausKlein/ModernCmakeStarter/commit/e57657fbf5d51d0d6e33fa7e7d675479f001f9a6

Yes, the only way I know to prevent this is to patch the `CMake` generated `compile_commands.json` file: ```bash Claus-iMac:ModernCmakeStarter clausklein$ make -n check perl -i.bak -p -e 's#-W[-\w]+(=\d)?\b##g;' -e 's#-I(/Users/clausklein/.cache/CPM)#-isystem...

> What does this change? I use `CMP.cmake` to fetch my dependencies. With perl script, I replace all `-I include path` to CMP cache to` -isystem include path`. And I...

@lefticus @aminya please note this brand new `CMake v3.24 option` I want to use: ```bash cmake -DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=$PWD/mycomp_provider.cmake -S . -B build -G Ninja -Wno-dev ```

see too https://discourse.cmake.org/t/fetchcontent-vs-vcpkg-conan/6578

on bash: export LSAN_OPTIONS='verbosity=1:log_threads=1'

@Orphis would you please review this PR?

I would prefer to only use stable tags for used packages.

> @ClausKlein Need to document the repo-request workflow but just message me and I can give you admin on `boost-cmake` if you so desire it :) @CraigHutchinson Do you something...

this is my `.clang-tidy` config file: ```yaml --- # LLVM version 13.0.0 Checks: '-*, bugprone-*, cert-*, -cert-err58-cpp, clang-diagnostic-*, clang-analyzer-*, hicpp-*, hicpp-avoid-*, -hicpp-no-array-decay, hicpp-signed-bitwise, hicpp-special-member-functions, hicpp-use-*, hicpp-vararg, misc-*, -misc-no-recursion, -misc-non-private-member-variables-in-classes, -misc-unused-parameters,...