packages feed

scenegraph-0.2.0.0: scenegraph.cabal

name:           scenegraph
version:        0.2.0.0
cabal-version:  >= 1.10
build-type:     Simple
author:         Mark Wassell <mwassell@bigpond.net.au>
license:        BSD3
license-file:   LICENSE
copyright:      Mark Wassell 2009
category:       Graphics
stability:      Experimental
homepage:       https://github.com/homectl/workspace
synopsis:       Scene Graph
description:
                Scene Graph Library.
maintainer:     Pippijn van Steenhoven

source-repository head
  type:     git
  location: https://github.com/homectl/workspace
  subdir:   scenegraph

library
  default-language: Haskell2010
  hs-source-dirs: src
  exposed-modules:
      Graphics.SceneGraph.Basic
      Graphics.SceneGraph.BoundingBox
      Graphics.SceneGraph.Matrix
      Graphics.SceneGraph.Render
      Graphics.SceneGraph.Types
      Graphics.SceneGraph.Visualise
      Graphics.SceneGraph
  build-depends:
      base
    , data-default
    , graphviz
    , fgl
    , lens
    , linear
    , mtl
    , text
  ghc-options:
      -Wall

test-suite testsuite
  default-language: Haskell2010
  hs-source-dirs:   test
  type: exitcode-stdio-1.0
  main-is:          testsuite.hs
  other-modules:
      Graphics.SceneGraph.BasicSpec
      Graphics.SceneGraph.BoundingBoxSpec
      Graphics.SceneGraph.VisualiseSpec
  ghc-options:
      -Wall
      -threaded
  build-tool-depends:
      hspec-discover:hspec-discover
  build-depends:
      base < 5
    , scenegraph
    , QuickCheck
    , hspec
    , lens
    , linear