-
Notifications
You must be signed in to change notification settings - Fork 0
/
7drl2017.cabal
46 lines (44 loc) · 1.43 KB
/
7drl2017.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
-- Initial 7drl2017.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: 7drl2017
version: 0.1.0.0
synopsis: Roguelike For the 7drl challenge
description: A simple roguelike game made in 7 days (or less)
license: BSD3
license-file: LICENSE
author: Jason Dagit
maintainer: dagitj@gmail.com
-- copyright:
category: Game
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
Tested-With: GHC == 7.10.3, GHC == 8.0.2
source-repository head
type: git
location: https://github.com/dagit/7drl2017.git
executable 7drl2017
main-is: Main.hs
other-modules: Action
, Event
, Game
, Item
, Level
, Misc
, Mob
, Player
, Random
, Render
, Saves
, Simulation
-- other-extensions:
build-depends: base >=4.8 && <4.10
, vty
, array
, lens
, mtl
, transformers
, text
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -threaded -Wall -O2