summaryrefslogtreecommitdiff
path: root/8queens.cabal
blob: 45f38f83e8f7c7b3ed61c5e8752b9c5b90d6e28f (plain)
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
name:                8queens
version:             0.1.0.0
-- synopsis:
-- description:
homepage:            https://github.com/svasilogianis/8queens#readme
license:             BSD3
license-file:        LICENSE
author:              Steven
maintainer:          steven.vasilogianis@gmail.com
copyright:           2019 Steven
category:            Web
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

executable 8queens
  ghc-options:         -O2 -W -Wall -threaded -rtsopts -with-rtsopts=-N
  hs-source-dirs:      src
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:       base >= 4.7 && < 5,
                       linear,
                       lens,
                       matrix,
                       random,
                       vector