-- Initial dynamic-graph.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                dynamic-graph
version:             0.1.0.2
synopsis:            Draw and update graphs in real time with OpenGL
description:         Draw and update graphs in real time with OpenGL. Suitable for displaying large amounts of frequently changing data. At this time, line graphs and waterfall plots are supported. Axis drawing will be added in a future version.
license:             BSD3
license-file:        LICENSE
author:              Adam Walker
maintainer:          adamwalker10@gmail.com
copyright:           2014 Adam Walker
category:            Graphics
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10
data-files:          shaders/texture_line.vert, shaders/texture_line.frag, shaders/waterfall.vert, shaders/waterfall.frag, shaders/fill_line.vert, shaders/fill_line.frag, shaders/cairo.vert, shaders/cairo.frag

source-repository head
    type: git
    location: https://github.com/adamwalker/dynamic-graph

library
  exposed-modules:     Graphics.DynamicGraph.TextureLine, Graphics.DynamicGraph.Waterfall, Graphics.DynamicGraph.Util, Graphics.DynamicGraph.FillLine, Graphics.DynamicGraph.Axis, Graphics.DynamicGraph.RenderCairo
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.8, GLFW-b >=1.4 && <1.5, OpenGL >=2.9 && <2.10, GLUtil >=0.7 && <0.8, transformers >=0.3 && <0.5, either >=4.1 && <4.4, pipes, pango, cairo, colour, bytestring, deepseq
  -- hs-source-dirs:      
  default-language:    Haskell2010
  other-modules:       Paths_dynamic_graph