canvas/canvas.cabal
2020-02-06 05:10:10 +01:00

32 lines
993 B
Text

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: Types
Types.UserData
-- other-extensions:
build-depends: base ^>=4.12.0.0
, affection
, sdl2 ^>=2.5.0.0
, OpenGL
, JuicyPixels
, JuicyPixels-extra
, stm
, containers
hs-source-dirs: app
default-language: Haskell2010