I have a project structured like this :
root/
|—— dune-project
|—— lib/
| |—— dune
| |—— Readertsp.ml
| |-- ...
|
|—— bin/
| |—— dune
| |—— bin.ml
bin.ml
:
let city_config = "ch130" in
let path = Readertsp.open_path city_config in ();;
dune
:
(executable
(name MCTS_main)
(libraries graphics mcts)
)
Readertsp.ml
: https://pastebin.com/U0h69uRy
dune
:
(library
(name mcts)
(modules Readertsp)
(libraries graphics))
When I try dune build, I get this error :
File "tests/MCTS_main.ml", line 3, characters 0-19:
3 | Readertsp.open_path city_config;;
^^^^^^^^^^^^^^^^^^^
Error: Unbound module Readertsp
Do you know how to fix this ?