gidl.cabal 1.3 KB

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