Hello As in subject when uninstalled I can't use library, because headers can't be included correctly: ```cpp #include <avcpp/av.h> // or #include "avcpp/av.h" ``` I am aware of 3 potential solutions to that, two simple, one not that simple: - move headers to `include/avcpp` directory - move all sources to `src/avcpp` directory - copy headers to builddir: [my meson workaround](https://github.com/piotrrak/avcpp/commit/491f1027c92f38b50221672768fb8234a82aa041), example of [samples (breaks cmake)](https://github.com/piotrrak/avcpp/commit/ea949d4c2ecbfd6b207971cdfe9101d94655fc91) I can live with my 'copy headers' workaround, didn't care yet to implement it for cmake though.