-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment1.cabal
35 lines (34 loc) · 1.22 KB
/
assignment1.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
name: assignment1
version: 0.1.0.0
synopsis: Programming assignment for the VUB's FP course
-- description:
homepage: https://github.com/Acaccia/FP_Assignment
license: BSD3
license-file: LICENSE
author: Anthony Caccia
maintainer: [email protected]
copyright: 2017 Anthony Caccia
category: Game
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable DesertExplorer
hs-source-dirs: src
main-is: Main.hs
ghc-options: -rtsopts -threaded -O2 -with-rtsopts=-N
other-modules: Data.Desert
, Data.Internal.Direction
, Data.Internal.List2D.BFS.Lazy
, Data.Internal.List2D.BFS.Strict
, Data.Play
, Data.Config
, Data.Internal.List2D
, Data.Internal.Nat
, Data.Player
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, mtl
, random
, containers
, lens
, parallel