it took some effort to find out why 'header_base' did not work for me:
I have a directory in my path with a '-' (e.g. 'git-test'), for those the string matching in: https://github.com/lubyk/dub/blob/master/dub/LuaBinder.lua#L598 does not match as the '-' is interpreted as pattern, in order to match literally it needs to be escaped: '-' -> '%-'
I can make a workaround for it in my binding script but the right way would be to fix it in LuaBinder.lua
it took some effort to find out why 'header_base' did not work for me:
I have a directory in my path with a '-' (e.g. 'git-test'), for those the string matching in: https://github.com/lubyk/dub/blob/master/dub/LuaBinder.lua#L598 does not match as the '-' is interpreted as pattern, in order to match literally it needs to be escaped: '-' -> '%-'
I can make a workaround for it in my binding script but the right way would be to fix it in LuaBinder.lua