summaryrefslogtreecommitdiff
path: root/Pesto.cabal
blob: ff13d20f4447e1f037789a9bf5b7b4cb18db50d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name:                Pesto
version:             0.1.0.0
-- synopsis:            
-- description:         
--license:             CC0
--license-file:        LICENSE
author:              Lars-Dominik Braun
maintainer:          lars@6xq.net
-- copyright:           
category:            Codec
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

-- parsec>=3.1.9 has instance Eq ParseError
library
  exposed-modules:     Codec.Pesto, Codec.Pesto.Parse, Codec.Pesto.Graph, Codec.Pesto.Lint, Codec.Pesto.Serialize
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.8 && <4.10, HUnit, parsec >= 3.1.9
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options:         -Werror -Wall -fno-warn-missing-signatures

executable pesto
  main-is: Main.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.8 && <4.10, HUnit, parsec >= 3.1.9
  ghc-options:         -Werror -Wall -fno-warn-missing-signatures

test-suite pesto-test
  type: exitcode-stdio-1.0
  main-is: Test.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.8 && <4.10, Pesto, HUnit, parsec >= 3.1.9
  ghc-options:         -Werror -Wall -fno-warn-missing-signatures

executable pesto-doc
  main-is: Doc.lhs
  hs-source-dirs:      src
  default-language:    Haskell2010
  build-depends:       base >=4.8 && <4.10, pandoc >=2.1, text, directory
  ghc-options:         -Werror -Wall -fno-warn-missing-signatures