我有一个具有这种结构的项目:
- dune
- main.ml
-- src/
---- dune
---- parser.ml
-- test/
---- dune
---- test_parser.ml
在src/dune
中,我有以下内容:
(library (name Parser))
在test/dune
:
(test (name test_token_type) (libraries oUnit Parser))
当我去跑步时dune build
,我得到了抱怨:
File "test/dune", line 1, characters 46-52:
1 | (test (name test_parser) (libraries oUnit Parser))
^^^^^^
关于如何解决的任何想法?