-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhsordle.cabal
31 lines (24 loc) · 858 Bytes
/
hsordle.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
cabal-version: 2.4
name: hsordle
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis: wordle in haskell
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports: https://github.com/g8row/hsordle
-- The license under which the package is released.
-- license: LICENSE
author: guroww
maintainer: aliogu23@gmail.com
extra-source-files: CHANGELOG.md
executable hsordle
if(os(windows))
main-is: Main-windows.hs
build-depends: base >=4.9, lens, random, containers, Win32
else
main-is: Main-linux.hs
build-depends: base >=4.9, lens, random, containers
other-modules: Helper Wordle Utils Play
hs-source-dirs: app
default-language: Haskell2010