Documentation not explicit on dependency on "libcmake-dev", not having it results in "'NoneType' object has no attribute 'encode'". Tested on master, on this file: https://github.com/EthicalML/vulkan-kompute/blob/master/single_include/kompute/Kompute.hpp I also tried on a simpler file (https://github.com/EthicalML/vulkan-kompute/blob/master/src/include/kompute/Manager.hpp) but still get the same error: ```python Processing "Manager.hpp" .. Waiting for jobs to finish .. Exception in thread Thread-1: Traceback (most recent call last): File "/home/alejandro/miniconda3/lib/python3.7/threading.py", line 926, in _bootstrap_inner self.run() File "/home/alejandro/miniconda3/lib/python3.7/site-packages/pybind11_mkdoc/mkdoc_lib.py", line 232, in run tu = index.parse(self.filename, self.parameters) File "/home/alejandro/miniconda3/lib/python3.7/site-packages/clang/cindex.py", line 2722, in parse self) File "/home/alejandro/miniconda3/lib/python3.7/site-packages/clang/cindex.py", line 2816, in from_source args_array = (c_char_p * len(args))(*[b(x) for x in args]) File "/home/alejandro/miniconda3/lib/python3.7/site-packages/clang/cindex.py", line 2816, in <listcomp> args_array = (c_char_p * len(args))(*[b(x) for x in args]) File "/home/alejandro/miniconda3/lib/python3.7/site-packages/clang/cindex.py", line 109, in b return x.encode('utf8') AttributeError: 'NoneType' object has no attribute 'encode' ``` Is this due to my environment? I'm testing in Ubuntu 18, Python3. Happy to provide further details.