-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChessPiecesPlacing.cabal
33 lines (31 loc) · 1.11 KB
/
ChessPiecesPlacing.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
Name: ChessPiecesPlacing
Version: 0.0.0.0
License: BSD3
Author: Stanislav Chernichkin
Maintainer: Stanislav Chernichkin <[email protected]>
Category: Puzzles
Homepage: https://github.com/schernichkin/ChessPiecesPlacing
Synopsis: Chess pieces placing puzzle solver
Description: Solves problem of placing given number of chess pieces on a chessboard
Build-Type: Simple
Stability: Experemental
Cabal-version: >= 1.8
executable ChessPiecesPlacer
Hs-Source-Dirs: src
main-is: Main.hs
Build-Depends: base >= 4
, optparse-applicative
GHC-Options: -Wall -O2
test-suite Tests
hs-source-dirs: test, src
main-is: Test.hs
other-modules: Main
type: exitcode-stdio-1.0
ghc-options: -Wall -O2 -main-is Test.runAllTests
build-depends: base >= 4
, optparse-applicative
, QuickCheck
, HUnit
, test-framework-quickcheck2
, test-framework-hunit
, test-framework