I have a new Mac (Apple ARM chip).
I did manage to get XcodeCapp built after messing with the project settings and it seems to work in the sense of the UI being functional and in general working as I remember it.
However, when I open a project copied from my older Mac, I get a bunch of "Creating Objective-C Class Pair has failed" notifications and in the "Errors and Warnings" tab, there are a number of "env: node: No such file or directory" warnings and
"Unable to parse: env: node: No such file or directory" error messages, which are presumably what the notifications are about.
I'm pretty sure I haven't messed with the project structure:
- My .j files are all in the top level of my cappuccino project
- There's a Resources folder at that level too
- That's where the .xib file resides, and indeed the .cib file(s) from prior conversions
- In the Resources folder is the .XcodeSupport folder, which is where the pairs used to get created in the old installation, but evidently not at the moment.
Given that 'node' is cited in the error messages, I checked that node is definitely installed and on the system path (it is) and I even added its location to the "Additional Toolchain Paths" in XcodeCapp, but to no avail.
Running nib2cib manually on my .xib file does work fine, creating an updated .cib file in the Resources directory, but I'll need the XcodeCapp working properly I think as Xcode is fussy these days about seeing the objective-c source files for enumerating the allowable outlets etc. that can be set in the xib.
Any clues?
-- Luke