summaryrefslogtreecommitdiff
path: root/hs-rgfw.cabal
blob: f4f1d79b06e51943e42b778c2a768af1c999c1e5 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabal-version:      3.0
name:               hs-rgfw
version:            0.2.2
homepage:           https://git.mtgmonkey.net/Andromeda/hs-rgfw
license:            BSD-3-Clause
license-file:       LICENSE
author:             andromeda
maintainer:         @andromeda:tchncs.de
category:           Development
build-type:         Simple
extra-doc-files: CHANGELOG.md
-- Extra source files to be distributed with the package, such as examples, or a tutorial module.
common warnings
    ghc-options:
        -Wall
common buildc
    include-dirs:
        include,
        include/RGFW
    c-sources: include/RGFW_HS.c
    install-includes:
        RGFW_HS.c
common pkgconfig
    pkgconfig-depends:
        gl,
        x11,
        xcursor,
        xrandr,
        xi
common default-language
    default-language: Haskell2010
library
    import:
        warnings,
        buildc,
        pkgconfig,
        default-language
    exposed-modules: RGFW
    build-depends:
        base >=4.18,
        bindings-DSL <1000
    hs-source-dirs: lib
executable hs-rgfw
    import:
        warnings,
        buildc,
        pkgconfig,
        default-language
    main-is: Main.hs
    build-depends:
        base >=4.18,
        hs-rgfw
    hs-source-dirs: src