Advertisement
Guest User

Untitled

a guest
Mar 12th, 2020
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. cabal-version: 2.4
  2. -- Initial package description 'GameOfLife.cabal' generated by 'cabal
  3. -- init'. For further documentation, see
  4. -- http://haskell.org/cabal/users-guide/
  5.  
  6. name: GameOfLife
  7. version: 0.1.0.0
  8. -- synopsis:
  9. -- description:
  10. -- bug-reports:
  11. license: GPL-3.0-or-later
  12. license-file: LICENSE
  13. author: skykanin
  14. maintainer: 3789764+skykanin@users.noreply.github.com
  15. -- copyright:
  16. -- category:
  17. build-type: Simple
  18. extra-source-files: CHANGELOG.md
  19.  
  20. executable GameOfLife
  21. main-is: Main.hs
  22. other-modules: Game, Rendering
  23. -- other-extensions:
  24. build-depends: , base >=4.8 && <5
  25. , gloss >= 1.13.1.1
  26. , vector >= 0.12.1.0 && <= 0.12.1.2
  27. , OpenGLRaw >=3.3.1.0 && <= 3.3.3.0
  28. hs-source-dirs: src, src/GameOfLife
  29. default-language: Haskell2010
  30. -- default-extensions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement