summaryrefslogtreecommitdiff
path: root/hs-rgfw.cabal
blob: 90ab29789d82f6192807caa0440e563348fb3e90 (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
cabal-version: 3.0
name: hs-rgfw
version: 0.1.0
license: GPL-3.0-only
license-file: LICENSE
author: Andromeda
maintainer: Matrix @andromeda:tchncs.de
build-type: Simple
extra-doc-files: README.md
common warnings
  ghc-options: -Wall

library
  import: warnings
  exposed-modules: RGFW.Generated
  build-depends:
    , base
    , c-expr-runtime
    , hs-bindgen-runtime
  include-dirs: rgfw
  hs-source-dirs: lib
  default-language: Haskell2010
  default-extensions: FlexibleInstances

executable hs-rgfw
  import: warnings
  main-is: Main.hs
  build-depends:
    , base
    , hs-rgfw
    , c-expr-runtime
    , hs-bindgen-runtime
  pkgconfig-depends:
    , gl
    , x11
    , xcursor
    , xrandr
    , xi
  include-dirs: rgfw
  hs-source-dirs: src
  default-language: Haskell2010