forked from rosekunkel/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgomoku.cabal
38 lines (33 loc) · 1.25 KB
/
gomoku.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
name: gomoku
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: nikivazou
maintainer: [email protected]
category: Game
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
executable gomoku
main-is: Server.hs
build-depends: base >=4.9 && <4.10, random >=1.1 && <1.2, time-out, time-units, random-shuffle, yesod, shakespeare, text, aeson, bytestring, monad-logger, persistent-postgresql, persistent, persistent-template, heroku
hs-source-dirs: src
other-modules: Checks,
Types,
Misc
default-language: Haskell2010
executable gomoku-text
main-is: Gomoku.hs
build-depends: base >=4.9 && <4.10, random >=1.1 && <1.2, time-out, time-units, random-shuffle
hs-source-dirs: src
other-modules: Checks,
Types,
Misc
default-language: Haskell2010
test-suite tests
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -W -threaded
main-is: Test.hs
build-depends: base >=4.9 && <4.10, process