2020-02-01 15:09:09 +00:00
|
|
|
cabal-version: 2.4
|
|
|
|
-- Initial package description 'canvas.cabal' generated by 'cabal init'.
|
|
|
|
-- For further documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
|
|
|
|
name: canvas
|
|
|
|
version: 0.0.0.0
|
|
|
|
synopsis: A test implementation for drawing images with SDL2 and OpenGL
|
|
|
|
-- description:
|
|
|
|
-- bug-reports:
|
|
|
|
license: BSD-3-Clause
|
|
|
|
license-file: LICENSE
|
|
|
|
author: nek0
|
|
|
|
maintainer: nek0@nek0.eu
|
|
|
|
-- copyright:
|
|
|
|
category: Game
|
|
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
|
|
|
|
executable canvas
|
|
|
|
main-is: Main.hs
|
|
|
|
-- other-modules:
|
|
|
|
-- other-extensions:
|
|
|
|
build-depends: base ^>=4.12.0.0
|
2020-02-05 06:21:39 +00:00
|
|
|
, affection
|
|
|
|
, sdl2 ^>=2.5.0.0
|
|
|
|
, OpenGL
|
|
|
|
, JuicyPixels
|
|
|
|
, JuicyPixels-extra
|
|
|
|
, stm
|
2020-02-01 15:09:09 +00:00
|
|
|
hs-source-dirs: app
|
|
|
|
default-language: Haskell2010
|