vulkan-tutorial/vulkan-tutorial.cabal

53 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-01-14 07:59:38 +00:00
cabal-version: 3.0
name: vulkan-tutorial
version: 0.0.0.0
synopsis:
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: GPL-3.0-or-later
license-file: LICENSE
author: nek0
maintainer: nek0@nek0.eu
-- A copyright notice.
-- copyright:
category: Game
extra-source-files: CHANGELOG.md
, shadersrc/*
2022-01-14 07:59:38 +00:00
executable vulkan-tutorial
main-is: Main.hs
-- Modules included in this executable, other than Main.
other-modules: Init
Instance
Devices
GraphicsPipeline
2022-07-13 01:41:33 +00:00
Framebuffers
2022-07-13 17:25:10 +00:00
CommandBuffer
2022-07-14 05:02:10 +00:00
Draw
2022-07-16 19:50:22 +00:00
Types
2022-01-14 07:59:38 +00:00
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
2022-05-01 07:42:21 +00:00
build-depends: base >=4.14.3.0
2022-01-14 07:59:38 +00:00
, sdl2
, vulkan
, vulkan-utils
, linear
, monad-loops
, stm
, bytestring
, text
, vector
, resourcet
, transformers
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall