aboutsummaryrefslogtreecommitdiffstats
path: root/learnopengl-haskell.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'learnopengl-haskell.cabal')
-rw-r--r--learnopengl-haskell.cabal30
1 files changed, 30 insertions, 0 deletions
diff --git a/learnopengl-haskell.cabal b/learnopengl-haskell.cabal
new file mode 100644
index 0000000..c8e0ab9
--- /dev/null
+++ b/learnopengl-haskell.cabal
@@ -0,0 +1,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