Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuzu-Typ committed Oct 27, 2024
1 parent 3369e86 commit 0b2ce1b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,35 @@
# 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

0 comments on commit 0b2ce1b

Please sign in to comment.