-
Notifications
You must be signed in to change notification settings - Fork 2
/
sudoku-solver.cabal
44 lines (38 loc) · 1.25 KB
/
sudoku-solver.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
name: sudoku-solver
version: 0.0.1
description: A Sudoku Solver with GUI
license: MIT
license-file: LICENSE
author: Thomas Brus
maintainer: thomasbrus92@gmail.com
build-type: Simple
cabal-version: >=1.14
extra-source-files: README.md
Executable sudoku-solver
main-is: Main.hs
build-depends: base >= 3 && < 5,
twentefp >= 0.4.1
default-language: Haskell2010
hs-source-dirs: src
Library
build-depends: base >= 3 && < 5,
twentefp >= 0.4.1
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Sudoku
Sudoku.Examples
Sudoku.Strategy
Sudoku.Strategy.NakedSingle
Sudoku.Strategy.NakedPairs
Sudoku.Strategy.HiddenSingle
other-modules: Sudoku.GUI
Sudoku.GUI.Button
Sudoku.GUI.Events
Sudoku.GUI.Menu
Sudoku.GUI.Raster
Sudoku.GUI.Solver
Sudoku.GUI.State
source-repository head
type: git
location: git://github.com/thomasbrus/sudoku-solver.git