renderer-tutorial/renderer-tutorial.cabal

36 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-05-15 18:04:18 +00:00
cabal-version: 2.4
-- Initial package description 'renderer.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
2020-05-18 02:57:41 +00:00
name: renderer-tutorial
2020-05-15 18:04:18 +00:00
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
2020-05-18 02:57:41 +00:00
executable renderer-tutorial
2020-05-15 18:04:18 +00:00
main-is: Main.hs
-- other-modules:
-- other-extensions:
2020-05-17 10:40:22 +00:00
build-depends: base >= 4.11.0.0 && < 5
2020-05-15 18:04:18 +00:00
, OpenGL
2020-05-17 04:40:30 +00:00
, OpenGLRaw
2020-05-15 18:04:18 +00:00
, sdl2 >= 2.5.0.0
2020-05-17 04:40:30 +00:00
, bytestring
, monad-loops
, random
2020-05-21 16:17:38 +00:00
other-modules: BindableClass
, BufferClass
2020-05-18 02:57:41 +00:00
, VertexBuffer
2020-05-21 16:17:38 +00:00
, VertexArray
2020-05-18 02:57:41 +00:00
, IndexBuffer
2020-05-15 18:04:18 +00:00
hs-source-dirs: src
default-language: Haskell2010