tomaz / appledoc

Objective-c code Apple style documentation set generator.
http://gentlebytes.com
4.19k stars 644 forks source link

Fixed Xcode 14 build fail: Added $(PROJECT_DIR)/default_templates.zip as output path for the build script that generates default_templates.zip #663

Open romantylets-verint opened 1 year ago

romantylets-verint commented 1 year ago

The build fails on Xcode 14 because:

There is a link command in other linker flags in project (-sectcreate __ZIP __templates default_templates.zip). That requires file default_templates.zip to be presented before script phases are performed. So you should show for Xcode that some output file will be generated by script (so you should add the filename into Output files script section).

tomaz commented 1 year ago

Is this backwards compatible for older Xcode versions?

tomaz commented 1 year ago

Changes seem fine, but again - is this compatible with older Xcode versions?