Added xcode instruction to readme doc.

This commit is contained in:
Nathan Moinvaziri 2020-10-24 18:45:26 -07:00
parent 7cb06eff8a
commit 237a057cc9

View File

@ -1,7 +1,10 @@
# Minizip Documentation <!-- omit in toc -->
### Table of Contents
- [API](#api)
- [Limitations](#limitations)
- [Xcode Instructions](#xcode-instructions)
- [Zlib Configuration](#zlib-configuration)
- [Upgrading from 1.x](#upgrading-from-1x)
- [Security Considerations](#security-considerations)
@ -52,6 +55,13 @@ The zip reader and writer interface provides support for extended hash algorithm
* Windows Explorer zip extraction utility does not support disk splitting. [1](https://stackoverflow.com/questions/31286707/the-same-volume-can-not-be-used-as-both-the-source-and-destination)
* macOS archive utility does not properly support ZIP files over 4GB. [1](http://web.archive.org/web/20140331005235/http://www.springyarchiver.com/blog/topic/topic/203) [2](https://bitinn.net/10716/)
## Xcode Instructions
To create an Xcode project with CMake use:
```
cmake -G Xcode .
```
## Zlib Configuration
By default, if zlib is not found, it will be pulled as an external project and installed. This requires [Git](https://git-scm.com/) to be installed and available to your command interpreter.