aboutsummaryrefslogtreecommitdiffstats
path: root/learnopengl-haskell.cabal
blob: c8e0ab91dfa019846f034e1c0e634f8721b73eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cabal-version:       >=1.10
-- Initial package description 'learnopengl-haskell.cabal' generated by
-- 'cabal init'.  For further documentation, see
-- http://haskell.org/cabal/users-guide/

name:                learnopengl-haskell
version:             0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file:        LICENSE
author:              Yann Herklotz
maintainer:          git@yannherklotz.com
-- copyright:
-- category:
build-type:          Simple
extra-source-files:  CHANGELOG.md

executable learnopengl-haskell
  main-is:             Main.hs
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.14 && <4.15,
                       sdl2 >=2.5.3.0 && <2.6,
                       OpenGL >=3.0.3.0 && <3.1,
                       bytestring >=0.10 && <0.11,
                       vector >=0.12.1.2 && <0.13
  hs-source-dirs:      src
  default-language:    Haskell2010