name: GLFW-b version: 1.0.2 category: Graphics author: Brian Lewis maintainer: Brian Lewis license: BSD3 license-file: LICENSE synopsis: Bindings to GLFW OpenGL library description: Bindings to , an open source, multi-platform library for creating windows with OpenGL contexts and managing input and events. . GLFW-b depends on , which, as of the time of this writing, binds to . . If you've used GLFW before, you were probably using 2.7.x. There are some significant differences in 3.0.x. Please see the . cabal-version: >= 1.10 build-type: Simple -------------------------------------------------------------------------------- extra-source-files: README.md TODO -------------------------------------------------------------------------------- library default-language: Haskell2010 ghc-options: -Wall -O2 if impl(ghc >= 6.8) ghc-options: -fwarn-tabs exposed-modules: Graphics.UI.GLFW other-modules: Graphics.UI.GLFW.Internal.C Graphics.UI.GLFW.Internal.C.TH Graphics.UI.GLFW.Internal.Instances.C Graphics.UI.GLFW.Internal.Instances.Data Graphics.UI.GLFW.Internal.Instances.Lift Graphics.UI.GLFW.Internal.Tables Graphics.UI.GLFW.Types build-depends: base < 5, bindings-GLFW == 0.0.*, th-lift == 0.5.* if impl(ghc < 7.6) build-depends: template-haskell == 2.7.* else build-depends: template-haskell == 2.8.* -------------------------------------------------------------------------------- test-suite main default-language: Haskell2010 ghc-options: -Wall -O2 if impl(ghc >= 6.8) ghc-options: -fwarn-tabs type: exitcode-stdio-1.0 main-is: Test.hs build-depends: GLFW-b == 1.0.*, HUnit == 1.2.*, base < 5, bindings-GLFW == 0.0.*, test-framework == 0.8.*, test-framework-hunit == 0.3.*, th-lift == 0.5.* if impl(ghc < 7.6) build-depends: template-haskell == 2.7.* else build-depends: template-haskell == 2.8.* -------------------------------------------------------------------------------- source-repository head type: git location: git://github.com/bsl/GLFW-b.git