How to add globally the external libraries in Projucer?

Hello,
In my own module I use Boost C++ Libraries. So for example in my module header file I have line:
#include <boost/circular_buffer.hpp>

But the problem is that my Projucer projects don’t compile until I add path to Boost inside “Header Search Paths” inside Project Settings in Projucer.

But I want to make it globally. Like it is with std libraries. I suppose I should provide path to boost somewhere in my module, but I have no idea how.

For any help great thanks in advance.

Best Regards

So I end up in situation that I have project which uses my module, but doesn’t use exactly Boost circular_buffer. But Even though I don’t use Boost, I need to provide boost path to make possible to compile it with my module.