gidl.cabal 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.Schema,
  16. Gidl.Types,
  17. Gidl.Types.AST,
  18. Gidl.Types.Base,
  19. Gidl.Backend.Haskell,
  20. Gidl.Backend.Haskell.Types
  21. build-depends: base >=4.7 && <4.8,
  22. hashable,
  23. mainland-pretty,
  24. parsec,
  25. transformers,
  26. ivory-artifact
  27. hs-source-dirs: src
  28. default-language: Haskell2010
  29. ghc-options: -Wall
  30. executable gidl-test
  31. main-is: Test.hs
  32. hs-source-dirs: tests
  33. build-depends: base >= 4.6,
  34. ivory-artifact,
  35. gidl
  36. default-language: Haskell2010
  37. ghc-options: -Wall