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
|
2022-07-12 14:31:40 +00:00
|
|
|
, shadersrc/*
|
2022-01-14 07:59:38 +00:00
|
|
|
|
|
|
|
executable vulkan-tutorial
|
|
|
|
main-is: Main.hs
|
|
|
|
|
|
|
|
-- Modules included in this executable, other than Main.
|
2022-07-10 23:58:58 +00:00
|
|
|
other-modules: Init
|
|
|
|
Instance
|
|
|
|
Devices
|
2022-07-12 16:59:02 +00:00
|
|
|
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-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
|
2022-12-02 01:57:30 +00:00
|
|
|
, vulkan-api
|
2022-01-14 07:59:38 +00:00
|
|
|
, vulkan-utils
|
2022-12-01 12:17:13 +00:00
|
|
|
, VulkanMemoryAllocator
|
2022-01-14 07:59:38 +00:00
|
|
|
, linear
|
|
|
|
, monad-loops
|
|
|
|
, stm
|
|
|
|
, bytestring
|
|
|
|
, text
|
|
|
|
, vector
|
|
|
|
, resourcet
|
|
|
|
, transformers
|
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2022-01-18 06:10:11 +00:00
|
|
|
ghc-options: -Wall
|