Skip to content

Commit

Permalink
Fixed cabal config
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Mörtberg committed Apr 7, 2014
1 parent 31b2dcb commit cf34077
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Setup.hs
Expand Up @@ -16,7 +16,7 @@ main = do
defaultMain
where
bnfc = do
ret <- system "bnfc -d Exp.cf"
ret <- system "bnfc --haskell -d Exp.cf"
case ret of
ExitSuccess -> defaultMain
ExitFailure n -> error $ "bnfc command not found or error" ++ show n
6 changes: 3 additions & 3 deletions cubical.cabal
Expand Up @@ -18,10 +18,10 @@ cabal-version: >=1.10
executable cubical
main-is: Main.hs
other-modules: Exp.Lex, Exp.Par
other-extensions: TupleSections, CPP, MagicHash
build-depends: base >=4.5 && < 5, transformers >=0.3, mtl >=2.1, haskeline >=0.7, directory >=1.2, array >=0.4, BNFC >= 2.6
other-extensions: TupleSections, ParallelListComp, CPP, MagicHash
build-depends: base >=4.5 && < 5, transformers >=0.3, mtl >=2.1, haskeline >=0.7, directory >=1.2, array >=0.4, BNFC >= 2.5, filepath >= 1.3
-- hs-source-dirs:
build-tools: alex, happy
default-language: Haskell2010
default-language: Haskell98
hs-source-dirs: .
other-modules: CTT, Concrete, Eval, Pretty

0 comments on commit cf34077

Please sign in to comment.