-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
58 lines (58 loc) · 1.17 KB
/
package.yaml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
library:
source-dirs: src
tests:
Connect4-Network-Game-test:
source-dirs: test
main: Spec.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Connect4-Network-Game
copyright: 2020 Vladyslav Yatsenko
maintainer: [email protected]
dependencies:
- time
- random
- containers
- transformers
- network
- base >= 4.7 && < 5
name: Connect4-Network-Game
version: 0.1.0.0
extra-source-files:
- README.md
- ChangeLog.md
author: Vladyslav Yatsenko
github: yilvad/Connect4-Network-Game
license: BSD3
executables:
Client-exe:
source-dirs: client
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Connect4-Network-Game
Client-MCTS-exe:
source-dirs: client-mcts
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Connect4-Network-Game
Server-exe:
source-dirs: server
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- Connect4-Network-Game
description: Please see the README on GitHub at <https://github.com/yivlad/Connect4-Network-Game#readme>