-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPicSolver.cabal
More file actions
49 lines (44 loc) · 1.8 KB
/
PicSolver.cabal
File metadata and controls
49 lines (44 loc) · 1.8 KB
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
name: PicSolver
version: 0.1.0.0
-- synopsis:
-- description:
-- homepage: https://github.com/{{github-username}}{{^github-username}}githubuser{{/github-username}}/pic_solver#readme
-- license: BSD3
-- license-file: LICENSE
-- author: {{author-name}}{{^author-name}}Author name here{{/author-name}}
-- maintainer: {{author-email}}{{^author-email}}example@example.com{{/author-email}}
-- copyright: {{copyright}}{{^copyright}}{{year}}{{^year}}2019{{/year}} {{author-name}}{{^author-name}}Author name here{{/author-name}}{{/copyright}}
-- category: {{category}}{{^category}}Web{{/category}}
build-type: Simple
cabal-version: >=1.10
-- extra-source-files: README.md
library
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, containers >= 0.6
exposed-modules: Row
, Util
, BoardKnowledge
ghc-options: -Wall -O2 -fprof-auto-calls -fllvm
executable pic_solver
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -Wall -O2 -rtsopts -fprof-auto-calls
build-depends: base >= 4.7 && < 5
, containers >= 0.6
, json >= 0.10
, PicSolver
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: test.hs
ghc-options: -Wall
build-depends: base >= 4.7 && < 5
, tasty >= 0.7
, tasty-hunit >= 0.10
, tasty-quickcheck >= 0.10
, containers >= 0.6
, PicSolver