41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
cabal-version: 2.4
|
|
-- Initial package description 'renderer.cabal' generated by 'cabal init'.
|
|
-- For further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: renderer-tutorial
|
|
version: 0.0.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
-- bug-reports:
|
|
license: GPL-3.0-only
|
|
license-file: LICENSE
|
|
author: nek0
|
|
maintainer: nek0@nek0.eu
|
|
-- copyright:
|
|
category: Graphics
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
executable renderer-tutorial
|
|
main-is: Main.hs
|
|
-- other-modules:
|
|
-- other-extensions:
|
|
build-depends: base >= 4.11.0.0 && < 5
|
|
, OpenGL
|
|
, OpenGLRaw
|
|
, sdl2 >= 2.5.0.0
|
|
, bytestring
|
|
, vector
|
|
, linear
|
|
, monad-loops
|
|
, random
|
|
, JuicyPixels
|
|
other-modules: BindableClass
|
|
, BufferClass
|
|
, VertexBuffer
|
|
, VertexArray
|
|
, IndexBuffer
|
|
, Shader
|
|
, Renderer
|
|
, Texture
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|