backtrace-labs / crashpad

A fork of Crashpad with file attachment support and other improvements.
Apache License 2.0
100 stars 31 forks source link

How do I build an Xcode project for macOS? #44

Closed snilwx closed 9 months ago

rick-bt commented 1 year ago

Hi @snilwx - can you provide detail on where the build fails for you? What documentation are you following?

snilwx commented 1 year ago

Hi @snilwx - can you provide detail on where the build fails for you? What documentation are you following?

I've looked at all the documentation, but nothing says how to compile crashpad into framework for macOS.

alecazam commented 1 year ago

There's no framework. You use Cmake to build an xcode project, and then have to include that. That builds a lib and you link to that. Only Apple puts the time in to build frameworks, but Crashpad is from Google.

rick-bt commented 1 year ago

+1 Thank you Alec.

snilwx commented 9 months ago

Thank you very much Alec.