bmoliveira / MarkdownKit

A simple and customizable Markdown Parser for Swift
MIT License
783 stars 136 forks source link

Fix build for macCatalyst #87

Closed ky1vstar closed 3 years ago

ky1vstar commented 3 years ago

Currently library fails to build when targeting Mac Catalyst platform. It happens due to canImport(AppKit) pre-compile check which is true on Mac Catalyst, but many APIs like NSFont still are not available. This PR adds targetEnvironment checks.

benjohnde commented 3 years ago

Looks feasible to me, d'accord with that one @gaebel?

benjohnde commented 3 years ago

Well, thanks for the contribution first of all :D @ky1vstar !