Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/teampyogg/xiph-static-build

Repository that creates statically linked libraries for ogg, vorbis, opus and flac
https://github.com/teampyogg/xiph-static-build

Last synced: about 2 months ago
JSON representation

Repository that creates statically linked libraries for ogg, vorbis, opus and flac

Awesome Lists containing this project

README

        

# xiph-static-build
Repository that creates statically linked libraries for ogg, vorbis, opus and flac

## Build
First you need to configure the project:
```sh
cmake -B build
```

Then you can build it:
```sh
cmake --build build --config Release
```

The generated static libraries can be found in `build/lib`.

Libraries built on Windows:
- FLAC.lib
- ogg.lib
- opus.lib
- opusenc.lib
- opusfile.lib
- vorbis.lib
- vorbisenc.lib
- vorbisfile.lib

Libraries built on Linux / Mac:
- libFLAC.a
- libogg.a
- libopus.a
- libopusenc.a
- libopusfile.a
- libvorbis.a
- libvorbisenc.a
- libvorbisfile.a