-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseangine.cabal
84 lines (80 loc) · 2.13 KB
/
seangine.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cabal-version: 3.0
name: seangine
version: 0.1.0.0
synopsis: An experimental 3D rendering engine in Vulkan
homepage: https://github.com/sgillespie/seangine
license: BSD-3-Clause
license-file: LICENSE
author: Sean D Gillespie
maintainer: [email protected]
category: Graphics
build-type: Simple
extra-doc-files: CHANGELOG.md
common common-options
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wredundant-constraints
-Wnoncanonical-monad-instances
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
-fwrite-ide-info
-hiedir=.hie
mixins:
base hiding (Prelude),
relude (Relude as Prelude),
relude
build-depends:
base ^>= 4.16.0.0,
relude,
linear
default-extensions:
DerivingStrategies,
OverloadedStrings,
RecordWildCards,
TypeFamilies
default-language: GHC2021
library
import: common-options
exposed-modules:
Graphics.Seangine,
Graphics.Seangine.Types,
Graphics.Seangine.Types.Config,
Graphics.Seangine.Types.Errors,
Graphics.Seangine.Types.R,
Graphics.Seangine.Window,
Graphics.Seangine.Window.Sdl,
Graphics.Seangine.Window.Glfw,
Graphics.Seangine.Window.Types
build-depends:
GLFW-b,
VulkanMemoryAllocator,
resourcet,
sdl2,
unliftio-core,
vector,
vulkan
extra-libraries:
glfw
hs-source-dirs: src
default-language: GHC2021
executable seangine
import: common-options
main-is: Main.hs
other-modules: Paths_seangine
build-depends:
optparse-applicative,
seangine
hs-source-dirs: app
default-language: GHC2021
test-suite seangine-test
import: common-options
default-language: GHC2021
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
seangine