-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfarm.cabal
43 lines (41 loc) · 1.34 KB
/
farm.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
cabal-version: >=1.10
name: farm
version: 0.1.0.0
license-file: LICENSE
author: freedan42x
maintainer: [email protected]
build-type: Simple
extra-source-files: CHANGELOG.md
executable farm
main-is: Main.hs
other-modules: Types
, Util
, Quests
, Draw
, Game
, Info
, Alchemy
, Recipes
, Perk
, LoadMenu
hs-source-dirs: src
ghc-options: -threaded -Wall -Wextra -Wno-type-defaults
default-extensions: LambdaCase
, TemplateHaskell
, OverloadedStrings
, TupleSections
, DeriveGeneric
, TypeSynonymInstances
, FlexibleInstances
build-depends: base >=4.12 && <4.13
, brick == 0.73
, vty
, microlens
, microlens-th
, containers
, random
, vector
, binary
, directory
, text
default-language: Haskell2010