From Stack Overflow.
[Read More]
Adding a cmakelint target to a CMake project
First install the cmakelint tool like this:
[Read More]
CMake: Combining use of a custom Clang build with ccache
If you’ve built a custom version of LLVM and clang, you can make a file containing paths to the compiler binaries that you want to use. This is like a poor-man’s toolchain file.
[Read More]
Altering the PATH environment variable for Dock/Finder launched applications on macOS
This seems to work for Sierra. Originally came from: Stack Exchange
[Read More]
Inspecting Clang search paths
Header include search paths
You can get clang to spit out its default include search paths like this:
```bash
$ clang -x c -v -E /dev/null
[Read More]