-
Notifications
You must be signed in to change notification settings - Fork 0
/
gol-tui.cabal
38 lines (34 loc) · 1.07 KB
/
gol-tui.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
cabal-version: 3.8
name: gol-tui
version: 0.1.0.0
synopsis: Conway's Game of Life TUI
homepage: https://github.com/MathiasSven/gol-tui
license: MIT
license-file: LICENSE
author: Mathias Sven
maintainer: mathiassven2@hotmail.com
category: Game
build-type: Configure
extra-tmp-files: "./gol-tui.buildinfo"
common warnings
ghc-options: -Wall
executable gol-tui
import: warnings
main-is: Main.hs
other-modules: Game
build-depends: base ^>=4.17.2.0
, text
, brick
, vty
, mtl
, microlens
, microlens-mtl
, microlens-th
, inline-c
, inline-c-cpp
, raw-strings-qq
, derive-storable
, derive-storable-plugin
hs-source-dirs: src
default-language: GHC2021
ghc-options: -threaded -optcxx-std=c++20