Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify the install stanza of extension universe otherlibs #2563

Merged
merged 8 commits into from
May 14, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
glob_files in alpha
  • Loading branch information
d-kalinichenko committed May 13, 2024
commit eb440c57cfd62dbd34c5679eb11cc022e2063b51
15 changes: 6 additions & 9 deletions ocaml/otherlibs/alpha/dune
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,11 @@

(install
(files
(alpha.cmxa as alpha/alpha.cmxa)
(alpha.a as alpha/alpha.a)
(alpha.cmxs as alpha/alpha.cmxs)
(alpha.cma as alpha/alpha.cma)
(alpha.mli as alpha/alpha.mli)
(.alpha.objs/byte/alpha.cmi as alpha/alpha.cmi)
(.alpha.objs/byte/alpha.cmt as alpha/alpha.cmt)
(.alpha.objs/byte/alpha.cmti as alpha/alpha.cmti)
(.alpha.objs/native/alpha.cmx as alpha/alpha.cmx))
(glob_files
(*.{cmxa,a,cmxs,cma,mli} with_prefix alpha))
(glob_files
(.alpha.objs/byte/*.{cmi,cmt,cmti} with_prefix alpha))
(glob_files
(.alpha.objs/native/*.cmx with_prefix alpha)))
(section lib)
(package ocaml))