packages feed

pathfindingcore-1.2: pathfindingcore.cabal

Name:                pathfindingcore
Version:             1.2
Cabal-version:       >=1.16.0
License:             BSD3
License-File:        LICENSE.txt
Author:              Jason Bertsche
Maintainer:          jason.bertsche@gmail.com
Homepage:            http://github.com/TheBizzle
Category:            Demo
Synopsis:            A toy pathfinding library
Description:         A toy pathfinding library
Build-type:          Simple

source-repository head
  type:     git
  location: git@github.com:TheBizzle/PathFindingCore-Haskell.git

library
  hs-source-dirs:   src
  exposed-modules:  PathFindingCore.PathingMap, PathFindingCore.Status, PathFindingCore.PathingMap.Coordinate, PathFindingCore.PathingMap.Direction, PathFindingCore.PathingMap.Terrain, PathFindingCore.PathingMap.Interpreter, PathFindingTest.TestSet
  default-language: Haskell2010
  build-depends:
    array >= 0.4,
    base  >= 4.6 && < 5,
    split >= 0.2
  GHC-Options:
    -Wall
    -fno-warn-name-shadowing

test-suite tests
  type:             exitcode-stdio-1.0
  main-is:          Main.hs
  hs-source-dirs:   test
  default-language: Haskell2010
  build-depends:
    array             >= 0.4,
    base              >= 4.6 && < 5,
    HUnit             >= 1.2,
    pathfindingcore   >= 1.2,
    tasty             >= 0.10,
    tasty-hunit       >= 0.9