这是我在开源项目中的第一次尝试,但我仍然无法正确设置我的.cabal
文件。
我有库,可执行文件和(即将推出)测试配置。 我想在可执行文件中使用该库,因此在下载时可以使用它们。
我跟着这个guide,但是我仍然在使用cabal-config,因为我只是在重新导入所有内容时才能使用它。
我当前的目录
- src/
- Main.hs
- Format/
- C.hs
- Converter.hs
- Raw.hs
- RGB565.hs
- tests/...
- dist/...
- UTFTConverter.cabal
可执行的Main.hs标题如下所示。
module Main where
import Format.C
import Format.Converter
Format /中的库文件如下所示。
module Format.{filename} where
...
这就是cabal文件的样子。
name: UTFTConverter
...
cabal-version: >=1.10
library
exposed-modules: Format.C
, Format.Converter
, Format.Raw
, Format.RGB565
build-depends: base >=4.7 && <4.8
, filepath >=1.3 && <1.4
, directory >=1.2 && <1.3
, time >=1.4 && <1.5
, bytestring >=0.10 && <0.11
, JuicyPixels >=3.2 && <3.3
hs-source-dirs: src
...
executable UTFTConverter
main-is: Main.hs
build-depends: base >=4.7 && <4.8
, filepath >=1.3 && <1.4
, directory >=1.2 && <1.3
, time >=1.4 && <1.5
, bytestring >=0.10 && <0.11
, JuicyPixels >=3.2 && <3.3
--, UTFTConverter ==0.1 <-- this does not work
hs-source-dirs: src
...
test-suite tests:
...
如果没有评论,则在cabal build
时会出现此错误。
...
cabal: At least the following dependencies are missing:
UTFTConverter ==0.1
...
它现在可以正常工作,但在教程中,可执行文件在同一个cabal文件中使用了库。
executable bassbull
main-is: Main.hs
ghc-options: -rtsopts -O2
build-depends: base,
bassbull, -- <-- this is the name of the library
bytestring,
cassava
hs-source-dirs: src
default-language: Haskell2010
我知道这当前有效,但我宁愿从一开始就以正确的方式使用它。这是&#34;对&#34;方式是什么?
答案 0 :(得分:1)
由于您的图书馆版本为0.1.0.0
,而非0.1
。它们并不完全匹配,因此cabal不会将您的图书馆识别为候选人。相反,请使用0.1.*
或0.1.0.0
,具体取决于您的版本政策:
executable UTFTConverter
main-is: Main.hs
build-depends: base >=4.7 && <4.8
, filepath >=1.3 && <1.4
, directory >=1.2 && <1.3
, time >=1.4 && <1.5
, bytestring >=0.10 && <0.11
, JuicyPixels >=3.2 && <3.3
, UTFTConverter ==0.1.0.0
hs-source-dirs: src