Skip to content

Commit 0b2ce1b

Browse files
committed
Update README.md
1 parent 3369e86 commit 0b2ce1b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
11
# xiph-static-build
22
Repository that creates statically linked libraries for ogg, vorbis, opus and flac
3+
4+
## Build
5+
First you need to configure the project:
6+
```sh
7+
cmake -B build
8+
```
9+
10+
Then you can build it:
11+
```sh
12+
cmake --build build --config Release
13+
```
14+
15+
The generated static libraries can be found in `build/lib`.
16+
17+
Libraries built on Windows:
18+
- FLAC.lib
19+
- ogg.lib
20+
- opus.lib
21+
- opusenc.lib
22+
- opusfile.lib
23+
- vorbis.lib
24+
- vorbisenc.lib
25+
- vorbisfile.lib
26+
27+
Libraries built on Linux / Mac:
28+
- libFLAC.a
29+
- libogg.a
30+
- libopus.a
31+
- libopusenc.a
32+
- libopusfile.a
33+
- libvorbis.a
34+
- libvorbisenc.a
35+
- libvorbisfile.a

0 commit comments

Comments
 (0)