summaryrefslogtreecommitdiff
path: root/vktest.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'vktest.cabal')
-rw-r--r--vktest.cabal22
1 files changed, 22 insertions, 0 deletions
diff --git a/vktest.cabal b/vktest.cabal
new file mode 100644
index 0000000..91cf7c9
--- /dev/null
+++ b/vktest.cabal
@@ -0,0 +1,22 @@
+cabal-version: 3.14
+name: vktest
+version: 0.1.0
+license: GPL-2.0-or-later
+license-file: LICENSE
+author: andromeda
+maintainer: @andromeda:tchncs.de
+category: Graphics
+build-type: Simple
+extra-doc-files: CHANGELOG.md
+
+common warnings
+ ghc-options: -Wall
+executable vktest
+ import: warnings
+ main-is: Main.hs
+ -- other-modules:
+ -- other-extensions:
+ build-depends: base >= 4.20.2
+ , vulkan-utils >= 0.5.10
+ hs-source-dirs: .
+ default-language: Haskell2010