I am working in a solution where there is a specific library in the solution that turns on or off functionality via #ifdef's.
I have another project in the solution that uses it as a dependency. In my build settings, I want to be able to define the symbols in the dependent library based on build configuration in my project. I cannot find any way to do this within Visual Studio.
Is there any way to accomplish this?
(I realize the ideal solution here would be to change those #ifdef's to something else, but please assume that I cannot edit code in the other project)