gidl.cabal 977 B

12345678910111213141516171819202122232425262728293031323334
  1. name: gidl
  2. version: 0.1.0.0
  3. license: AllRightsReserved
  4. license-file: LICENSE
  5. author: Pat Hickey
  6. maintainer: pat@galois.com
  7. copyright: 2015 Galois Inc
  8. build-type: Simple
  9. cabal-version: >=1.10
  10. library
  11. exposed-modules: Gidl,
  12. Gidl.Parse,
  13. Gidl.Interface,
  14. Gidl.Interface.AST,
  15. Gidl.Types,
  16. Gidl.Types.AST,
  17. Gidl.Types.Base
  18. build-depends: base >=4.7 && <4.8,
  19. parsec,
  20. transformers
  21. hs-source-dirs: src
  22. default-language: Haskell2010
  23. ghc-options: -Wall
  24. executable gidl-test
  25. main-is: Test.hs
  26. hs-source-dirs: tests
  27. build-depends: base >= 4.6,
  28. gidl
  29. default-language: Haskell2010
  30. ghc-options: -Wall