-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenvulkan.cabal
69 lines (49 loc) · 1.7 KB
/
genvulkan.cabal
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
cabal-version: 2.2
name: genvulkan
version: 0.1.0.0
synopsis: Vulkan API generator
description: Vulkan API generator for vulkan-raw package
license: BSD-3-Clause
license-file: LICENSE
author: Oleksii Divak
maintainer: frozenwitness@gmail.com
copyright: (c) 2023 Oleksii Divak
category: Graphics
build-type: Simple
library
hs-source-dirs: src
exposed-modules: Autogen
other-modules: Autogen.Cabal
Autogen.Cabal.Types
Autogen.Distillery
Autogen.Distillery.Class
Autogen.Distillery.Condenser
Autogen.Distillery.Types
Autogen.Mixer
Autogen.Mixer.Types
Autogen.Packager
Autogen.Packager.Types
Autogen.Parser
Autogen.Parser.Types
Text.XML.Parser
Paths_genvulkan
autogen-modules: Paths_genvulkan
build-depends: base >= 4.7 && < 5
, containers
, directory
, filepath
, HaXml
, text
default-language: Haskell2010
ghc-options: -Wall
executable genvulkan
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall
build-depends: base
, genvulkan
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/burningwitness/vulkan
subdir: genvulkan