ejeinc / MetalScope

Metal-backed 360° panorama view for iOS
MIT License
324 stars 72 forks source link

Build for simulator? #46

Open joninsky opened 6 years ago

joninsky commented 6 years ago

I have trouble building the project when a simulator is selected in xCode. Think you need to add another architecture to some of the conditional compiler flags. For example I think

(arch(arm) || arch(arm64)) && os(iOS)

should be:

(arch(arm) || arch(arm64) || arch(i386)) && os(iOS)