1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Stephane Glondu <steph@glondu.net>
Date: Thu, 13 Feb 2025 14:24:45 +0100
Subject: Use atdgen-runtime in example script
---
atdgen/example/example.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/atdgen/example/example.sh b/atdgen/example/example.sh
index a25efdc..518419c 100644
--- a/atdgen/example/example.sh
+++ b/atdgen/example/example.sh
@@ -18,7 +18,7 @@ atdgen format_v1.atd
atdgen format_v2.atd
# Compile and link all OCaml code, producing upgrade_demo
-ocamlfind $compiler -g -dtypes -package atdgen -linkpkg \
+ocamlfind $compiler -g -dtypes -package atdgen-runtime -linkpkg \
format_v1.mli format_v1.ml \
format_v2.mli format_v2.ml \
upgrade_demo.ml -o upgrade_demo
|