summaryrefslogtreecommitdiff
path: root/vktest.cabal
blob: bddd72465941b4c8d71ae39f7581f73b9dc11720 (plain)
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
cabal-version:      3.14
name:               vktest
version:            0.1.0
license:            GPL-2.0-or-later
license-file:       LICENSE
author:             andromeda
maintainer:         @andromeda:tchncs.de
category:           Graphics
build-type:         Simple
extra-doc-files:    CHANGELOG.md

executable vktest
    main-is:           Main.hs
    other-modules:     VkTest.Shaders,
                       VkTest.Config,
                       VkTest.Util,
                       RGFW,
    build-depends:     base             >= 4.20.2,
                       bytestring       >= 0.12,
                       vector           >= 0.13,
                       vulkan           >= 3.27,
                       hs-bindgen,
                       hs-bindgen-runtime,
                       fir,
    pkgconfig-depends: x11,
                       xrandr,
                       xcursor,
                       xi,
                       xcb,
                       xdmcp,
    include-dirs:      include
    hs-source-dirs:    .
    c-sources:         shim.c
    ghc-options:       -Wall -Wno-ambiguous-fields -optc-DRGFW_VULKAN
    default-language:  Haskell2010