-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvulkan-example.cabal
More file actions
49 lines (34 loc) · 1.14 KB
/
vulkan-example.cabal
File metadata and controls
49 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
cabal-version: 2.2
name: vulkan-example
version: 0.1.0.0
synopsis: Basic Vulkan tutorial
description: Renders a triangle following Vulkan Tutorial
license: BSD-3-Clause
license-file: LICENSE
author: Oleksii Divak
maintainer: Oleksii Divak <frozenwitness@gmail.com>
copyright: (c) 2023 Oleksii Divak
category: Example
build-type: Simple
library
hs-source-dirs: src
exposed-modules: Example
other-modules: Example.Extensions
Example.Shaders
build-depends: base >= 4.11 && < 5
, bindings-GLFW
, vk-mem-alloc
, vulkan-raw
default-language: Haskell2010
ghc-options: -Wall
executable vulkan-example
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, vulkan-example
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/burningwitness/vulkan
subdir: vulkan-triangles