rolling.cabal 739 B

1234567891011121314151617181920212223242526272829
  1. name: rolling
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. author: Getty Ritter <gettylefou@gmail.com>
  7. maintainer: Getty Ritter <gettylefou@gmail.com>
  8. copyright: @2021 Getty Ritter
  9. -- category:
  10. build-type: Simple
  11. cabal-version: >=1.14
  12. executable rolling
  13. hs-source-dirs: src
  14. main-is: Main.hs
  15. other-modules: Rolling.Prob
  16. , Rolling.Common
  17. , Rolling.Render
  18. -- and the games
  19. , Rolling.PBTA
  20. , Rolling.FITD
  21. , Rolling.PBTA20
  22. , Rolling.Ironsworn
  23. default-language: Haskell2010
  24. default-extensions: ScopedTypeVariables
  25. ghc-options: -Wall
  26. build-depends: base >=4.7 && <5
  27. , cairo
  28. , pango