-
Notifications
You must be signed in to change notification settings - Fork 0
/
wolf3d.cabal
95 lines (90 loc) · 3.35 KB
/
wolf3d.cabal
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: wolf3d
version: 0.0.0.4
-- synopsis:
-- description:
homepage: https://github.com/danielholmes/wolf3d#readme
license: BSD3
license-file: LICENSE
author: Daniel Holmes
maintainer: [email protected]
copyright: 2018 Daniel Holmes
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Wolf3D.Geom
, Wolf3D.Main
, Wolf3D.World
, Wolf3D.Runner
, Wolf3D.Display
, Wolf3D.Display.Data
, Wolf3D.Display.Ray
, Wolf3D.Display.Hud
, Wolf3D.Display.Utils
, Wolf3D.Display.MiniMap
, Wolf3D.UI
, Wolf3D.DataHelpers
, Wolf3D.SDLUtils
, Wolf3D.Debug.Dummy
, Wolf3D.Debug.Display
, Wolf3D.Debug.Data
, Wolf3D.Loader
, Wolf3D.Utils
, Wolf3D.Animation
, Wolf3D.Hero
, Wolf3D.WorldData
other-modules: Wolf3D.Input
build-depends: base >= 4.7 && < 5
, sdl2 >= 2.3.0 && < 3
, sdl2-image >= 2.0.0 && < 3
, time >= 1.6.0.1 && < 2
, text >= 1.2.2.2 && < 2
, extra >= 1.5.3 && < 2
, monad-loops >= 0.4.3 && < 1
, StateVar >= 1.1.0.4 && < 2
, AC-Vector >= 1.2.2 && < 2
, containers >= 0.5.10.2 && < 1
, sdl2-ttf >= 2.0.1 && < 3
, stopwatch >= 0.1.0.4 && < 1
, clock >= 0.7.2 && < 1
, array >= 0.5.4.0 && < 1
default-language: Haskell2010
--executable wolf3d
-- hs-source-dirs: app
-- main-is: Main.hs
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- build-depends: base
-- , wolf3d
-- , AC-Vector >= 1.2.2 && < 2
-- default-language: Haskell2010
executable wolf3d-debug
hs-source-dirs: app-debug
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, wolf3d
, AC-Vector >= 1.2.2 && < 2
default-language: Haskell2010
test-suite wolf3d-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, wolf3d
, hspec >= 2.4.4 && < 3
, time >= 1.6.0.1 && < 2
, AC-Vector >= 1.2.2 && < 2
, array >= 0.5.4.0 && < 1
other-modules: Wolf3D.SpecHelp
, Wolf3D.GeomSpec
, Wolf3D.HeroSpec
, Wolf3D.WorldSpec
, Wolf3D.RunnerSpec
, Wolf3D.Display.RaySpec
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/danielholmes/wolf3d-haskell