Replies: 3 comments
-
Thank you |
Beta Was this translation helpful? Give feedback.
-
Been working on it, updating to the latest Xcode but seems appdelegate files are missing? Builds fine but instantly exits because of missing nsobject references or something to that effect. Definitely want to get this working again though! |
Beta Was this translation helpful? Give feedback.
-
Welp, I feel dumb now. I forgot that I added a bunch of additional fonts and that's why it's failing. Anyway, I do intend to generally keep the Xcode projects up to date, going to be pushing some changes here shortly to get it in line with the Windows builds. |
Beta Was this translation helpful? Give feedback.
-
Not sure if anybody cares about macOS builds, but here's what I had to do:
SDL2.framework
,SDL2_ttf.framework
, andSDL2_image.framework
from https://github.com/orgs/libsdl-org/repositories and put them in thexcode
directory. (Or elsewhere if you modify the xcodeproj to point to them.)Raleway-Medium.ttf
into theres
directory, but renamed asraleway-medium.ttf
.in
src/EvaluationWindow.cpp
becauseEvalWindow.png
appears to be missing.to
xcode/Micropolis-SDL2PP/Micropolis_SDL2PP.entitlements
, I think because the SDL frameworks were signed by them and the hardened runtime refuses to link it.AppDelegate
object fromMainMenu.xib
because it doesn't exist.I put most of these fixes in https://github.com/shuang886/Micropolis-SDL2PP/tree/macos.
Beta Was this translation helpful? Give feedback.
All reactions