I'm building a project and I wanted to make a precompiled header to boost performance. The issue is that I'm also using stbi_image headers in my project, which means I would have to include my header on all the stbi files in my project AND make sure there is no duplicate header declarations in any of them.
Is there another way to include stbi or a way to bypass including the precompiled header in those files?