catala/compiler/catala_utils/dune

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
415 B
Plaintext
Raw Normal View History

2020-11-23 11:22:47 +03:00
(library
2022-11-21 12:46:17 +03:00
(name catala_utils)
(public_name catala.catala_utils)
(modules
(:standard \ get_version))
2024-04-26 16:40:55 +03:00
(libraries unix cmdliner ubase ocolor re))
(executable
(name get_version)
(modules get_version)
(libraries unix))
2020-12-14 20:09:38 +03:00
(documentation
(package catala)
2022-11-21 12:46:17 +03:00
(mld_files catala_utils))
(rule
(deps
(universe)
(env_var CATALA_VERSION))
(action
(with-stdout-to
version.ml
(run %{exe:get_version.exe}))))