add a bunch of comments, including haddock documentation for Mine
[hs-pgms.git] / mine.cabal
blobd6a2f803a31be9a25a5152accc5b6b9f936bec0f
1 Name:          mine
2 Version:       0.0
3 Stability:     experimental
4 Copyright:     (c) 2008 Bertram Felgenhauer
5 License:       BSD3
6 License-File:  LICENSE
7 Synopsis:      Programmer's Mine Sweeper in Haskell
8 Description:
9     This package allows people to code Minesweeper strategies in Haskell
10     and run them in a graphical UI.
12     Inspired by <http://www.ccs.neu.edu/home/ramsdell/pgms/index.html>.
13 Cabal-Version: >=1.2
14 Build-Type:    Simple
16 Data-Dir:      data
17 Data-Files:    icons.png
19 Library
20     HS-Source-Dirs:  src
21     Exposed-Modules: Mine
23 Executable mine
24     HS-Source-Dirs:  src
25     Main-is:         Main.hs
26     Other-Modules:   Mine, SimpleStrat, Strat1, Util,
27                      GUI, GUI.Common, GUI.Config, GUI.Stats
28     Build-Depends:   base, MonadPrompt, array, mtl, random, glib, gtk, directory
29     GHC-Options:     -threaded