I am using the IPP library for my projects and there is a handy tool within VS Studio that automatically sets the paths etc. It is available via dropdown:
However, the Introjucer overwrites this setting each time I am saving the project, so I have to change this everytime for every Configuration which is slightly annoying.
Always good to get suggestions like this, but don't think we have time to do this one (and don't have IPP here to test it!).. If someone could suggest a modification we'd be happy to take a look, it shouldn't take more than a few lines of code..
It'd be much better if Introjucer were to write the settings for the IDE projects to a "Introjucer.props" file (for Visual Studio) and "Introjucer.xcconfig" file (for Xcode) rather than messing with the project files themselves.
It'd be much easier to maintain and to override at the user discretion where needed.
Basically, using "props" and "xcconfig" files is like using #includes, but for project settings. It has saved me tons of hours.
You can put all sort of customizations in there and reuse them in multiple projects by simply reusing the same configuration file.
And on top of that, both IDEs let you override some of those customizations where you need to.