mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 16:16:44 +03:00
25 lines
415 B
Plaintext
25 lines
415 B
Plaintext
(library
|
|
(name catala_utils)
|
|
(public_name catala.catala_utils)
|
|
(modules
|
|
(:standard \ get_version))
|
|
(libraries unix cmdliner ubase ocolor re))
|
|
|
|
(executable
|
|
(name get_version)
|
|
(modules get_version)
|
|
(libraries unix))
|
|
|
|
(documentation
|
|
(package catala)
|
|
(mld_files catala_utils))
|
|
|
|
(rule
|
|
(deps
|
|
(universe)
|
|
(env_var CATALA_VERSION))
|
|
(action
|
|
(with-stdout-to
|
|
version.ml
|
|
(run %{exe:get_version.exe}))))
|