blob: 6b8fd9d49ee88a1c772a0da99823d232c756a5e7 [file] [log] [blame] [view]
To build libzip from the repository using autotools, you need to
install autoconf, automake, and libtool; then run
```shell
autoreconf -fi
```
Afterwards you can run configure as usual.
Alternatively, use cmake.
```shell
mkdir build
cd build
cmake .. -DBUILD_SHARED_LIBS:BOOL=ON
```
If you prefer building a static library, leave define `BUILD_SHARED_LIBS` to `OFF`