packages feed

hOff-display-0.1.0.0: hOff-display.cabal

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

name:                hOff-display
version:             0.1.0.0
synopsis:            The tool to transform the OFF to other image format.
description:         The tool to transform the OFF file to other image with gnuplot.
homepage:            https://github.com/Qinka/hOff
license:             GPL-3
license-file:        LICENSE
author:              Johann Lee
maintainer:          qinka@live.com
copyright:           Copyright (C) Johann Lee <me@qinka.pro>
category:            Graphics
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  exposed-modules:     HOff.Display
--  other-modules:       
--  other-extensions:    
  build-depends:       base >= 4 && < 5
                     , hOff-parser
                     , OpenGL >= 3.0
  hs-source-dirs:      src-lib
  default-language:    Haskell2010


executable hOff-display-gl
  hs-source-dirs:      src-app
  main-is:             display.hs
  build-depends:       base >= 4 && < 5
                     , hOff-parser
                     , hOff-display
                     , OpenGL >= 3.0
                     , GLFW >= 0.5
                     , parsec
  default-language:    Haskell2010

source-repository head
  type: git
  location: https://github.com/Qinka/hOff.git
  subdir: hOff-display
  branch: master