RNDr. Simon Toth

Results 6 comments of RNDr. Simon Toth

I run into the same problem. It's actually an issue with clang treating `.h` files as C. To fix it, change the `run_clang_tidy.sh`: ``` clang-tidy --extra-arg-before=-xc++ "$@" ```

Considering that this ended up in the state it was presented on CppCon, do you know about any projects that are taking this further? I'm interested in this type of...

@memsharded Well, I was hoping that Conan would manage this for me. If I do it manually, then in Bazel I have to add a toolchain and then wrap it...

@memsharded OK, I will need to go and do some experiments. I wish the standard library was treated more like a package. I would even like to express a dependency...

@memsharded I think I'm still missing something here. How would that work exactly? Let's say I package libc++, both the production version and the debug version for development. I can't...

OK, managed to get through the first hurdle. I was missing `"include": ["src"],` in the source section. I'm getting output now, but it seems to be empty.