Skip to content

Commit

Permalink
--
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpouzet committed Oct 23, 2024
1 parent a508e15 commit f8c8de5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config.ml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let version = "z0"
let subversion = "dev"
let stdlib = "/Users/pouzet/article/paper/lustre/hybrid/zelus_git/github/zrun.work/_build/install/default/share/zelus"
let date = "2024-07-17-9:55"
let date = "2024-10-23-17:21"
10 changes: 5 additions & 5 deletions src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

; all the modules necessary to parse
(library
(name parse_lib)
(public_name zrun.parse_lib)
(name parser_lib)
(public_name zrun.parser_lib)
(wrapped false)
(modules
location ; position in the source file
Expand All @@ -39,7 +39,7 @@
pp_tools ; pretty printer tools
printer ; printer for the ast
)
(libraries parse_lib))
(libraries parser_lib))

;; the ZRun interpreter
; all the necessary modules to make zrun except the entry modules
Expand All @@ -64,7 +64,7 @@
forloop ; evaluation functions for for loops
eval ; evaluation of an expression
)
(libraries zrun.parse_lib zrun.global_lib))
(libraries zrun.parser_lib zrun.global_lib))

; The ZRun interpreter
(executable
Expand All @@ -73,7 +73,7 @@
(modules
zrun; the main function
)
(libraries zrun.parse_lib zrun.global_lib zrun.zrun_lib)
(libraries zrun.parser_lib zrun.global_lib zrun.zrun_lib)
(promote (until-clean) (into ..)))

(install
Expand Down

0 comments on commit f8c8de5

Please sign in to comment.