-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
163 lines (153 loc) · 3.25 KB
/
package.yaml
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: hraylib3d
version: 0.1.0.0
github: "githubuser/hraylib3d"
license: BSD3
author: "Miles J. Litteral"
maintainer: "[email protected]"
copyright: "2023 Miles J. Litteral"
extra-source-files:
- README.md
- CHANGELOG.md
description: Please see the README on GitHub at <https://github.com/githubuser/hraylib3d#readme>
dependencies:
- base >= 4 && <= 5
- mtl
- aeson == 2.1.2.1
- exceptions
- directory
- binary
- hashable
- JuicyPixels
- unordered-containers
- bytestring
- vect
- vector
- transformers
- pretty-show
- deepseq
- zlib
- filepath
- linear #This will replace both vect and Vector, or Vector will do so
- mersenne-random-pure64 #wtf XD, it's from 2008 but maybe that's okay because it's RNG
- data-binary-ieee754 #wtf x2, atleast its an IEEE standard
- elerea # ??? DCT? DWT? FRP??? Signals??? https://hackage.haskell.org/package/elerea-2.9.0/docs/FRP-Elerea-Param.html#t:Signal
- megaparsec
- parsec
- containers
- scientific
- microlens-platform
- time
- process
- postgresql-simple
- text
- uuid
- xml
- xml-conduit-writer
- xml-conduit
- yaml
- lens
- http-client
- modern-uri
- req
- stm
- digest
- utf8-string
- HaTeX
- OpenGLRaw
- GLFW-b
- split
#- vulkan-api
- vulkan
- vulkan-utils
- proteaaudio
- MonadRandom
- attoparsec
- data-default-class
- ilist
#- graphql
- lambdacube-compiler
- lambdacube-ir
- lambdacube-gl
#- lambdacube-xr
#- lambdacube-vulkan
#- lambdacube-metal
#- lambdacube-renderer # obligatory
- gltf-loader
- gltf-codec
- dlist
#- unix
- extra
- prettyclass
- base64-bytestring
- linear-base
- uuid
- data-default
- megastore # move to core
- monomer
- tinyfiledialogs
- adjunctions
- wavefront
- wreq # will be replaced with internal Network module features, currently in for compatibility
- text-show
- criterion
- monomer-hagrid
- nsis
- linear # This will replace Data.Vect entirely
ghc-options:
- -Wall
# - -shared
# - -fno-shared-implib
- -optl-mconsole
- -optl-mwindows
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
cc-options:
- -fPIC
build-tools: c2hs
#include-dirs: cbits
# install-includes:
# - stb_image.h
# c-sources:
# - cbits/stb_image.c
#https://www.sasaprolic.com/2022/11/statically-linked-binaries-with-haskell.html
#extra-include-dirs: C:\ghcup\msys64\mingw64\include\SDL2
executables:
hraylib3d:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hraylib3d
# These all require a class of Widgets and Logic Objects (Components) to represent Script Objects
# Attached to Entities and even the UI itself
RealmViewer-FE-Demo:
main: Main.hs
source-dirs: app/RealmViewer-FE-Demo/
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hraylib3d
tests:
hraylib3d-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hraylib3d
- sdl2