I recently updated from JUCE 6.0.1 to JUCE 6.0.8.
Previously, I had my “Header Search Paths” set to:
${PROJECT_DIR}/../../GenericLibrary/include
This worked fine.
But now, Xcode is not able to find the headers when building.
Any advice with this?
I recently updated from JUCE 6.0.1 to JUCE 6.0.8.
Previously, I had my “Header Search Paths” set to:
${PROJECT_DIR}/../../GenericLibrary/include
This worked fine.
But now, Xcode is not able to find the headers when building.
Any advice with this?
After digging around, I found JUCE now defaults “Header Search Paths” to ${SRC_ROOT}, so I changed
${PROJECT_DIR}/../../GenericLibrary/include
to
../../GenericLibrary/include
Now it works!