-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoints.cabal
50 lines (45 loc) · 971 Bytes
/
points.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
44
45
46
47
48
49
50
cabal-version: 3.8
name: points
version: 1.0.0
license: AGPL-3.0-or-later
license-file: LICENSE.txt
author: kurnevsky
maintainer: [email protected]
build-type: Simple
common defaults
default-language: GHC2021
ghc-options: -O2 -Wall
build-depends: base
library
import: defaults
hs-source-dirs: field/src
exposed-modules:
Field
Player
build-depends:
, array
, containers
executable bench
import: defaults
hs-source-dirs: bench/src
main-is: Main.hs
build-depends:
, base
, MonadRandom
, optparse-applicative
, points
, random
, random-shuffle
, pipes
test-suite points-field-tests
import: defaults
type: exitcode-stdio-1.0
hs-source-dirs: field/tests
main-is: Tests.hs
other-modules: FieldTests
build-depends:
, HUnit
, points
, split
, test-framework
, test-framework-hunit