vulkan-tutorial/vulkan-tutorial.cabal

64 lines
1.7 KiB
Plaintext
Raw Permalink 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-12-01 12:17:13 +00:00
Memory
Mesh
2022-12-28 03:18:54 +00:00
Image
2023-05-14 11:28:19 +00:00
Sync
2023-05-14 16:50:02 +00:00
Textures
2022-07-16 19:50:22 +00:00
Types
2023-01-06 15:54:30 +00:00
Util
2022-01-14 07:59:38 +00:00
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
2023-08-24 17:48:36 +00:00
build-depends: base
2022-01-14 07:59:38 +00:00
, sdl2
, vulkan
, vulkan-utils
2022-12-01 12:17:13 +00:00
, VulkanMemoryAllocator
2022-12-15 04:19:53 +00:00
, wavefront
2022-01-14 07:59:38 +00:00
, linear
, monad-loops
, stm
2023-10-22 04:08:18 +00:00
, time
2022-01-14 07:59:38 +00:00
, bytestring
, text
, vector
, resourcet
2023-01-02 01:18:06 +00:00
, mtl
2023-01-02 04:59:59 +00:00
, containers
2023-05-14 16:50:02 +00:00
, JuicyPixels
2022-01-14 07:59:38 +00:00
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall