about summary refs log tree commit diff
path: root/grav2ty.cabal
blob: b244861b9b738e6ff4329ae8d00d464b7ed34a54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cabal-version:       2.4
-- Initial package description 'grav2ty.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/

name:                grav2ty
version:             0.1.0.0
synopsis:            a 2d space (ship) game with realistic physics-based gameplay
-- description:
-- bug-reports:
license:             GPL-3.0-only
license-file:        LICENSE
author:              sternenseemann
maintainer:          git@lukasepple.de
-- copyright:
category:            Game
extra-source-files:  CHANGELOG.md
                   , README.md
                   , doc/intersection-line-circle.pdf
                   , doc/grav2ty-first-commit.png

library grav2ty-lib
  exposed-modules:     Grav2ty.Core
                     , Grav2ty.Simulation
                     , Grav2ty.Control
                     , Grav2ty.Protocol
                     , Grav2ty.Util.RelGraph
                     , Grav2ty.Util.Serialization
  -- other-extensions:
  build-depends:       base ^>=4.12.0.0
                     , containers ^>=0.6.0.1
                     , linear ^>=1.20.8
                     , lens ^>= 4.17.1
                     , transformers^>=0.5.6.2
                     , bytestring ^>=0.10.8.2
                     , flat^>=0.3.4
                     , attoparsec^>=0.13.2.3
  hs-source-dirs:      lib
  default-language:    Haskell2010

executable grav2ty
  main-is:             Main.hs
  -- other-modules:
  -- other-extensions:
  build-depends:       base ^>=4.12.0.0
                     , containers ^>=0.6.0.1
                     , gloss ^>=1.13.0.1
                     , linear ^>=1.20.8
                     , lens ^>= 4.17.1
                     , transformers^>=0.5.6.2
                     , grav2ty-lib
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite lib-test
  type:                exitcode-stdio-1.0
  main-is:             test/Main.hs
  build-depends:       base ^>=4.12.0.0
                     , tasty ^>=1.2
                     , tasty-quickcheck ^>=0.10
                     , grav2ty-lib
  default-language:    Haskell2010