18
私はsrc
ディレクトリを持っています。このディレクトリに私はMain.hs
ファイルとTest
ディレクトリを持っています。 Test
ディレクトリには、Test.hs
モジュールがあります。私はカバールとそれをコンパイルする必要があります。カバール:ソースでビルドディレクトリ
Executable main
-- .hs or .lhs file containing the Main module.
Main-is: src/Main.hs
と
-- Modules not exported by this package.
Other-modules: Test.Test
私はcabal configure
を行うと、それはOKですが、私はcabal build
しようとすると、私は次のエラーを取得する:
cabal build
Preprocessing executables for main-0.0.1...
cabal: can't find source for Test/Test in ., dist/build/autogen
私が持っている私の秘密結社ファイルで
Main.hs
と他のディレクトリをで正しくビルドするにはファイル?
ありがとうございます。