We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3369e86 commit 0b2ce1bCopy full SHA for 0b2ce1b
README.md
@@ -1,2 +1,35 @@
1
# xiph-static-build
2
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
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