diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-11 06:49:35 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | bf2af26d896bb499f2c312a4f1ecd3210e2d7780 (patch) | |
tree | a84acddddb18872abb9adcb977d4999d4d5415bc | |
parent | 820a7bda25c5541ce9580f99ec9f6eb512103e59 (diff) |
Added explicit transitive depedencies in dune file
-rwxr-xr-x | bin/dune | 2 | ||||
-rwxr-xr-x | lib/file_handler/dune | 1 | ||||
-rwxr-xr-x | lib/helpers/dune | 1 |
3 files changed, 4 insertions, 0 deletions
@@ -9,10 +9,12 @@ (executable
(name importer)
(libraries
+ unix
csv
lwt
lwt.unix
otoml
+ sqlite3
tools
helpers
importConf
diff --git a/lib/file_handler/dune b/lib/file_handler/dune index 6b247db..02be751 100755 --- a/lib/file_handler/dune +++ b/lib/file_handler/dune @@ -1,6 +1,7 @@ (library
(name importFileHandler)
(libraries
+ unix
csv
SZXX
sqlite3
diff --git a/lib/helpers/dune b/lib/helpers/dune index 8e30d2b..b8300f8 100755 --- a/lib/helpers/dune +++ b/lib/helpers/dune @@ -1,6 +1,7 @@ (library
(name helpers)
(libraries
+ unix
calendar
decoders
otoml
|