projectGeneratorSimple
projectGeneratorSimple copied to clipboard
XCode: Path to OF in Project.xcconfig wrong
Project generator replaces a string in the Project.xcconfig twice. When the project folder is outside of the main of-Folder the result will look like this:
include "../../../../../of_v0.8.0_osx_release/../../of_v0.8.0_osx_release/libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig"
Fix (as far as I can see it) removing one replacement line in xcodeProject.cpp Line 293: // findandreplaceInTexfile(projectDir + "Project.xcconfig", "../../../", relRoot); findandreplaceInTexfile(projectDir + "Project.xcconfig", "../../..", relPath2);
thanks that seems like a good fix - implementing now