I am trying to compile haskell for JS using Fay with one directory after the --include option, for example:
fay --include src\Tmv src\Tmv\Client\Main.hs
In src \ Tmv there is a SharedTypes.hs file that defines the Tmv.SharedTypes module that is used in Client \ Main.hs. I get the following error:
Could not find module "Tmv.SharedTypes". Use -v to see a list of files searched for.
The -v option does not work. I tried several options for options, for example. absolute paths, quotation marks, escaped (double) backslashes.
Configuration: fay 0.10.1.0, ghc 7.4.2 (i386), Windows 7 x64
source share