Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions detect/dune
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

(rule
(targets ogg_available ogg_c_flags.sexp ogg_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} ogg ogg)))

(rule
(targets flac_available flac_c_flags.sexp flac_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} flac flac)))

Expand All @@ -17,11 +19,13 @@
flac_ogg_available
flac_ogg_c_flags.sexp
flac_ogg_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} flac_ogg ogg flac)))

(rule
(targets vorbis_available vorbis_c_flags.sexp vorbis_c_library_flags.sexp)
(deps (universe))
(action
(run
./detect.exe
Expand All @@ -34,15 +38,18 @@

(rule
(targets opus_available opus_c_flags.sexp opus_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} opus opus ogg)))

(rule
(targets speex_available speex_c_flags.sexp speex_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} speex speex ogg)))

(rule
(targets theora_available theora_c_flags.sexp theora_c_library_flags.sexp)
(deps (universe))
(action
(run ./detect.exe --context %{context_name} theora theoradec theoraenc)))
Loading