1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
(library
(name vorbis)
(public_name vorbis)
(synopsis "OCaml bindings for libvorbis")
(libraries ogg)
(modules vorbis)
(foreign_stubs
(language c)
(names vorbis_stubs)
(flags
(:include c_flags.sexp)))
(c_library_flags
(:include c_library_flags.sexp)))
(library
(name vorbis_decoder)
(public_name vorbis.decoder)
(synopsis "Vorbis decoder for the ogg-decoder library")
(libraries ogg.decoder vorbis)
(modules vorbis_decoder))
(rule
(targets c_flags.sexp c_library_flags.sexp)
(action
(run ./config/discover.exe)))
|