packages feed

uni-graphs-2.2.0.0: uni-graphs.cabal

name:           uni-graphs
version:        2.2.0.0
build-type:     Simple
license:        LGPL
license-file:   LICENSE
author:         uniform@informatik.uni-bremen.de
maintainer:     Christian.Maeder@dfki.de
homepage:       http://www.informatik.uni-bremen.de/uniform/wb/
category:       GUI
synopsis:       Graphs
description:    Graphs toolkit
cabal-version:  >= 1.4
Tested-With:    GHC==6.8.3, GHC==6.10.4, GHC==6.12.3

flag debug
  description: add debug traces
  default: False

library
  exposed-modules: Graphs.GraphDisp, Graphs.GraphConfigure, Graphs.NewNames,
    Graphs.Graph, Graphs.SimpleGraph, Graphs.GetAttributes, Graphs.DisplayGraph,
    Graphs.GraphEditor, Graphs.GraphConnection,
    Graphs.RemoveAncestors, Graphs.GraphOps, Graphs.TopSort,
    Graphs.FindCommonParents, Graphs.FindCycle, Graphs.GetAncestors,
    Graphs.EmptyGraphSort, Graphs.PureGraph, Graphs.PureGraphPrune,
    Graphs.PureGraphToGraph, Graphs.VersionDag, Graphs.PureGraphMakeConsistent

  build-depends: base >=3 && < 4, containers, mtl, uni-util, uni-events,
    uni-reactor, uni-htk

  if flag(debug)
    cpp-options: -DDEBUG

  if impl(ghc < 6.10)
    extensions: PatternSignatures
  else
    ghc-options: -fwarn-unused-imports -fno-warn-warnings-deprecations