-
Notifications
You must be signed in to change notification settings - Fork 1
/
bgfx.cabal
40 lines (37 loc) · 1.09 KB
/
bgfx.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
name: bgfx
version: 0.1.0.0
synopsis: Haskell bindings to bgfx
homepage: https://github.com/haskell-game/bgfx
license: BSD3
license-file: LICENSE
author: Ollie Charles
maintainer: [email protected]
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: BGFX
other-extensions: ForeignFunctionInterface
build-depends: base >=4.8 && <4.9, transformers
hs-source-dirs: src
default-language: Haskell2010
pkgconfig-depends: gl, x11
include-dirs:
bgfx-upstream/3rdparty/khronos
bgfx-upstream/include
bx-upstream/include
extra-libraries: stdc++
c-sources: bgfx-upstream/src/amalgamated.cpp
default-language: Haskell2010
executable hello
build-depends: base, bgfx, sdl2
main-is: Hello.hs
default-language: Haskell2010
c-sources:
cbits/sdl-bgfx.c
executable cubes
build-depends: base, bgfx, sdl2, linear, bytestring, lens, distributive, clock
main-is: Cubes.hs
default-language: Haskell2010
c-sources:
cbits/sdl-bgfx.c