Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/teampyogg/xiph-static-build
- Owner: TeamPyOgg
- License: unlicense
- Created: 2024-10-27T08:41:25.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-27T15:58:26.000Z (about 2 months ago)
- Last Synced: 2024-10-28T10:37:28.220Z (about 2 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.libLibraries built on Linux / Mac:
- libFLAC.a
- libogg.a
- libopus.a
- libopusenc.a
- libopusfile.a
- libvorbis.a
- libvorbisenc.a
- libvorbisfile.a