-
Notifications
You must be signed in to change notification settings - Fork 0
/
urho3d-haskell.cabal
730 lines (688 loc) · 30.7 KB
/
urho3d-haskell.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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
name: urho3d-haskell
version: 0.1.0.0
synopsis: Haskell bindings for Urho3D engine
description: Please see README.md
homepage: https://github.com/Teaspot-Studio/Urho3D-Haskell
license: MIT
license-file: LICENSE
author: Teaspot Studio
maintainer: [email protected]
copyright: Teaspot Studio (c) 2015
category: Bindings
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
flag Urho3DOpenGL
description: binding to Urho3D engine with OpenGL renderer
default: True
flag Urho3DD3D9
description: binding to Urho3D engine with Direct3D9 renderer
default: False
flag Urho3DD3D11
description: binding to Urho3D engine with Direct3D11 renderer
default: False
flag examples
description: build engine examples
default: False
flag debug-shared
description: Debug shared pointers. Print when they garbage collected.
default: False
library
hs-source-dirs: src
include-dirs: src
exposed-modules: Graphics.Urho3D
Graphics.Urho3D.Container
Graphics.Urho3D.Container.FlagSet
Graphics.Urho3D.Container.Str
Graphics.Urho3D.Container.Vector.Common
Graphics.Urho3D.Core
Graphics.Urho3D.Core.Context
Graphics.Urho3D.Core.CustomFactory
Graphics.Urho3D.Core.Events
Graphics.Urho3D.Core.Object
Graphics.Urho3D.Core.ObjectFactory
Graphics.Urho3D.Core.ProcessUtils
Graphics.Urho3D.Core.TypeInfo
Graphics.Urho3D.Core.Variant
Graphics.Urho3D.Engine
Graphics.Urho3D.Engine.Application
Graphics.Urho3D.Engine.Console
Graphics.Urho3D.Engine.DebugHud
Graphics.Urho3D.Engine.Engine
Graphics.Urho3D.Graphics
Graphics.Urho3D.Graphics.AnimatedModel
Graphics.Urho3D.Graphics.Animation
Graphics.Urho3D.Graphics.AnimationState
Graphics.Urho3D.Graphics.Batch
Graphics.Urho3D.Graphics.BillboardSet
Graphics.Urho3D.Graphics.Camera
Graphics.Urho3D.Graphics.DebugRenderer
Graphics.Urho3D.Graphics.DecalSet
Graphics.Urho3D.Graphics.Defs
Graphics.Urho3D.Graphics.Drawable
Graphics.Urho3D.Graphics.Geometry
Graphics.Urho3D.Graphics.Graphics
Graphics.Urho3D.Graphics.IndexBuffer
Graphics.Urho3D.Graphics.Light
Graphics.Urho3D.Graphics.Material
Graphics.Urho3D.Graphics.Model
Graphics.Urho3D.Graphics.ModelMorph
Graphics.Urho3D.Graphics.Octree
Graphics.Urho3D.Graphics.OctreeQuery
Graphics.Urho3D.Graphics.Renderer
Graphics.Urho3D.Graphics.RenderPath
Graphics.Urho3D.Graphics.RenderSurface
Graphics.Urho3D.Graphics.Skeleton
Graphics.Urho3D.Graphics.StaticModel
Graphics.Urho3D.Graphics.Technique
Graphics.Urho3D.Graphics.Texture
Graphics.Urho3D.Graphics.Texture2D
Graphics.Urho3D.Graphics.Texture2DArray
Graphics.Urho3D.Graphics.VertexBuffer
Graphics.Urho3D.Graphics.View
Graphics.Urho3D.Graphics.Viewport
Graphics.Urho3D.Graphics.Zone
Graphics.Urho3D.Input
Graphics.Urho3D.Input.Events
Graphics.Urho3D.Input.Input
Graphics.Urho3D.Input.InputConstants
Graphics.Urho3D.IO
Graphics.Urho3D.IO.Deserializer
Graphics.Urho3D.IO.FileSystem
Graphics.Urho3D.IO.Serializer
Graphics.Urho3D.Math
Graphics.Urho3D.Math.BoundingBox
Graphics.Urho3D.Math.Color
Graphics.Urho3D.Math.Defs
Graphics.Urho3D.Math.Frustum
Graphics.Urho3D.Math.Matrix3x4
Graphics.Urho3D.Math.Matrix4
Graphics.Urho3D.Math.Plane
Graphics.Urho3D.Math.Polyhedron
Graphics.Urho3D.Math.Quaternion
Graphics.Urho3D.Math.Random
Graphics.Urho3D.Math.Ray
Graphics.Urho3D.Math.Rect
Graphics.Urho3D.Math.Sphere
Graphics.Urho3D.Math.StringHash
Graphics.Urho3D.Math.Vector2
Graphics.Urho3D.Math.Vector3
Graphics.Urho3D.Math.Vector4
Graphics.Urho3D.Network
Graphics.Urho3D.Network.Connection
Graphics.Urho3D.Network.Events
Graphics.Urho3D.Network.Network
Graphics.Urho3D.Resource
Graphics.Urho3D.Resource.Cache
Graphics.Urho3D.Resource.Image
Graphics.Urho3D.Resource.Resource
Graphics.Urho3D.Resource.XMLElement
Graphics.Urho3D.Resource.XMLFile
Graphics.Urho3D.Scene
Graphics.Urho3D.Scene.Animatable
Graphics.Urho3D.Scene.Component
Graphics.Urho3D.Scene.CustomLogicComponent
Graphics.Urho3D.Scene.Events
Graphics.Urho3D.Scene.LogicComponent
Graphics.Urho3D.Scene.Node
Graphics.Urho3D.Scene.Scene
Graphics.Urho3D.Scene.Serializable
Graphics.Urho3D.UI
Graphics.Urho3D.UI.BorderImage
Graphics.Urho3D.UI.Button
Graphics.Urho3D.UI.CheckBox
Graphics.Urho3D.UI.Cursor
Graphics.Urho3D.UI.DropDownList
Graphics.Urho3D.UI.Element
Graphics.Urho3D.UI.Events
Graphics.Urho3D.UI.FileSelector
Graphics.Urho3D.UI.Font
Graphics.Urho3D.UI.FontFace
Graphics.Urho3D.UI.FontFaceBitmap
Graphics.Urho3D.UI.FontFaceFreeType
Graphics.Urho3D.UI.LineEdit
Graphics.Urho3D.UI.ListView
Graphics.Urho3D.UI.Menu
Graphics.Urho3D.UI.MessageBox
Graphics.Urho3D.UI.ProgressBar
Graphics.Urho3D.UI.ScrollBar
Graphics.Urho3D.UI.ScrollView
Graphics.Urho3D.UI.Slider
Graphics.Urho3D.UI.Sprite
Graphics.Urho3D.UI.Text
Graphics.Urho3D.UI.Text3D
Graphics.Urho3D.UI.ToolTip
Graphics.Urho3D.UI.UI
Graphics.Urho3D.UI.UIBatch
Graphics.Urho3D.UI.View3D
Graphics.Urho3D.UI.Window
other-modules: Graphics.Urho3D.Container.Internal.Str
Graphics.Urho3D.Container.Vector.Internal.Common
Graphics.Urho3D.Core.Internal.Context
Graphics.Urho3D.Core.Internal.CustomFactory
Graphics.Urho3D.Core.Internal.Object
Graphics.Urho3D.Core.Internal.ObjectFactory
Graphics.Urho3D.Core.Internal.TypeInfo
Graphics.Urho3D.Core.Internal.Variant
Graphics.Urho3D.Engine.Internal.Application
Graphics.Urho3D.Engine.Internal.Console
Graphics.Urho3D.Engine.Internal.DebugHud
Graphics.Urho3D.Engine.Internal.Engine
Graphics.Urho3D.Graphics.Internal.AnimatedModel
Graphics.Urho3D.Graphics.Internal.Animation
Graphics.Urho3D.Graphics.Internal.AnimationState
Graphics.Urho3D.Graphics.Internal.Batch
Graphics.Urho3D.Graphics.Internal.BillboardSet
Graphics.Urho3D.Graphics.Internal.BillboardSetInstances
Graphics.Urho3D.Graphics.Internal.Camera
Graphics.Urho3D.Graphics.Internal.DebugRenderer
Graphics.Urho3D.Graphics.Internal.DecalSet
Graphics.Urho3D.Graphics.Internal.Defs
Graphics.Urho3D.Graphics.Internal.Drawable
Graphics.Urho3D.Graphics.Internal.Geometry
Graphics.Urho3D.Graphics.Internal.Graphics
Graphics.Urho3D.Graphics.Internal.IndexBuffer
Graphics.Urho3D.Graphics.Internal.Light
Graphics.Urho3D.Graphics.Internal.Material
Graphics.Urho3D.Graphics.Internal.Model
Graphics.Urho3D.Graphics.Internal.ModelInstances
Graphics.Urho3D.Graphics.Internal.ModelMorph
Graphics.Urho3D.Graphics.Internal.Octree
Graphics.Urho3D.Graphics.Internal.OctreeQuery
Graphics.Urho3D.Graphics.Internal.Renderer
Graphics.Urho3D.Graphics.Internal.RenderPath
Graphics.Urho3D.Graphics.Internal.RenderSurface
Graphics.Urho3D.Graphics.Internal.Skeleton
Graphics.Urho3D.Graphics.Internal.StaticModel
Graphics.Urho3D.Graphics.Internal.Technique
Graphics.Urho3D.Graphics.Internal.Texture
Graphics.Urho3D.Graphics.Internal.Texture2D
Graphics.Urho3D.Graphics.Internal.Texture2DArray
Graphics.Urho3D.Graphics.Internal.VertexBuffer
Graphics.Urho3D.Graphics.Internal.View
Graphics.Urho3D.Graphics.Internal.Viewport
Graphics.Urho3D.Graphics.Internal.Zone
Graphics.Urho3D.Input.Internal.Input
Graphics.Urho3D.IO.Internal.Deserializer
Graphics.Urho3D.IO.Internal.FileSystem
Graphics.Urho3D.IO.Internal.Serializer
Graphics.Urho3D.Math.Internal.BoundingBox
Graphics.Urho3D.Math.Internal.Color
Graphics.Urho3D.Math.Internal.Frustum
Graphics.Urho3D.Math.Internal.Matrix3x4
Graphics.Urho3D.Math.Internal.Matrix4
Graphics.Urho3D.Math.Internal.Plane
Graphics.Urho3D.Math.Internal.Polyhedron
Graphics.Urho3D.Math.Internal.Quaternion
Graphics.Urho3D.Math.Internal.Ray
Graphics.Urho3D.Math.Internal.Rect
Graphics.Urho3D.Math.Internal.Sphere
Graphics.Urho3D.Math.Internal.StringHash
Graphics.Urho3D.Math.Internal.Vector2
Graphics.Urho3D.Math.Internal.Vector3
Graphics.Urho3D.Math.Internal.Vector4
Graphics.Urho3D.Network.Internal.Connection
Graphics.Urho3D.Network.Internal.Network
Graphics.Urho3D.Resource.Internal.Cache
Graphics.Urho3D.Resource.Internal.Image
Graphics.Urho3D.Resource.Internal.Resource
Graphics.Urho3D.Resource.Internal.XMLElement
Graphics.Urho3D.Resource.Internal.XMLFile
Graphics.Urho3D.Scene.Internal.Animatable
Graphics.Urho3D.Scene.Internal.Component
Graphics.Urho3D.Scene.Internal.CustomLogicComponent
Graphics.Urho3D.Scene.Internal.LogicComponent
Graphics.Urho3D.Scene.Internal.Node
Graphics.Urho3D.Scene.Internal.Scene
Graphics.Urho3D.Scene.Internal.Serializable
Graphics.Urho3D.UI.Internal.BorderImage
Graphics.Urho3D.UI.Internal.Button
Graphics.Urho3D.UI.Internal.CheckBox
Graphics.Urho3D.UI.Internal.Cursor
Graphics.Urho3D.UI.Internal.DropDownList
Graphics.Urho3D.UI.Internal.Element
Graphics.Urho3D.UI.Internal.FileSelector
Graphics.Urho3D.UI.Internal.Font
Graphics.Urho3D.UI.Internal.FontFace
Graphics.Urho3D.UI.Internal.FontFaceBitmap
Graphics.Urho3D.UI.Internal.FontFaceFreeType
Graphics.Urho3D.UI.Internal.LineEdit
Graphics.Urho3D.UI.Internal.ListView
Graphics.Urho3D.UI.Internal.Menu
Graphics.Urho3D.UI.Internal.MessageBox
Graphics.Urho3D.UI.Internal.ProgressBar
Graphics.Urho3D.UI.Internal.ScrollBar
Graphics.Urho3D.UI.Internal.ScrollView
Graphics.Urho3D.UI.Internal.Slider
Graphics.Urho3D.UI.Internal.Sprite
Graphics.Urho3D.UI.Internal.Text
Graphics.Urho3D.UI.Internal.Text3D
Graphics.Urho3D.UI.Internal.ToolTip
Graphics.Urho3D.UI.Internal.UI
Graphics.Urho3D.UI.Internal.UIBatch
Graphics.Urho3D.UI.Internal.View3D
Graphics.Urho3D.UI.Internal.Window
c-sources: src/Graphics/Urho3D/Container/Str.cpp
src/Graphics/Urho3D/Container/Vector/Common.cpp
src/Graphics/Urho3D/Core/Context.cpp
src/Graphics/Urho3D/Core/CustomFactory.cpp
src/Graphics/Urho3D/Core/Events.cpp
src/Graphics/Urho3D/Core/Object.cpp
src/Graphics/Urho3D/Core/ObjectFactory.cpp
src/Graphics/Urho3D/Core/ProcessUtils.cpp
src/Graphics/Urho3D/Core/TypeInfo.cpp
src/Graphics/Urho3D/Core/Variant.cpp
src/Graphics/Urho3D/Engine/Application.cpp
src/Graphics/Urho3D/Engine/Console.cpp
src/Graphics/Urho3D/Engine/DebugHud.cpp
src/Graphics/Urho3D/Engine/Engine.cpp
src/Graphics/Urho3D/Graphics/AnimatedModel.cpp
src/Graphics/Urho3D/Graphics/Animation.cpp
src/Graphics/Urho3D/Graphics/AnimationState.cpp
src/Graphics/Urho3D/Graphics/Batch.cpp
src/Graphics/Urho3D/Graphics/BillboardSet.cpp
src/Graphics/Urho3D/Graphics/Camera.cpp
src/Graphics/Urho3D/Graphics/DebugRenderer.cpp
src/Graphics/Urho3D/Graphics/DecalSet.cpp
src/Graphics/Urho3D/Graphics/Defs.cpp
src/Graphics/Urho3D/Graphics/Drawable.cpp
src/Graphics/Urho3D/Graphics/Geometry.cpp
src/Graphics/Urho3D/Graphics/Graphics.cpp
src/Graphics/Urho3D/Graphics/IndexBuffer.cpp
src/Graphics/Urho3D/Graphics/Internal/BillboardSetInstances.cpp
src/Graphics/Urho3D/Graphics/Internal/ModelInstances.cpp
src/Graphics/Urho3D/Graphics/Light.cpp
src/Graphics/Urho3D/Graphics/Material.cpp
src/Graphics/Urho3D/Graphics/Model.cpp
src/Graphics/Urho3D/Graphics/ModelMorph.cpp
src/Graphics/Urho3D/Graphics/Octree.cpp
src/Graphics/Urho3D/Graphics/OctreeQuery.cpp
src/Graphics/Urho3D/Graphics/Renderer.cpp
src/Graphics/Urho3D/Graphics/RenderPath.cpp
src/Graphics/Urho3D/Graphics/RenderSurface.cpp
src/Graphics/Urho3D/Graphics/Skeleton.cpp
src/Graphics/Urho3D/Graphics/StaticModel.cpp
src/Graphics/Urho3D/Graphics/Technique.cpp
src/Graphics/Urho3D/Graphics/Texture.cpp
src/Graphics/Urho3D/Graphics/Texture2D.cpp
src/Graphics/Urho3D/Graphics/Texture2DArray.cpp
src/Graphics/Urho3D/Graphics/VertexBuffer.cpp
src/Graphics/Urho3D/Graphics/View.cpp
src/Graphics/Urho3D/Graphics/Viewport.cpp
src/Graphics/Urho3D/Graphics/Zone.cpp
src/Graphics/Urho3D/Input/Events.cpp
src/Graphics/Urho3D/Input/Input.cpp
src/Graphics/Urho3D/Input/InputConstants.cpp
src/Graphics/Urho3D/IO/Deserializer.cpp
src/Graphics/Urho3D/IO/FileSystem.cpp
src/Graphics/Urho3D/IO/Serializer.cpp
src/Graphics/Urho3D/Math/BoundingBox.cpp
src/Graphics/Urho3D/Math/Color.cpp
src/Graphics/Urho3D/Math/Defs.cpp
src/Graphics/Urho3D/Math/Frustum.cpp
src/Graphics/Urho3D/Math/Matrix3x4.cpp
src/Graphics/Urho3D/Math/Matrix4.cpp
src/Graphics/Urho3D/Math/Plane.cpp
src/Graphics/Urho3D/Math/Polyhedron.cpp
src/Graphics/Urho3D/Math/Quaternion.cpp
src/Graphics/Urho3D/Math/Random.cpp
src/Graphics/Urho3D/Math/Ray.cpp
src/Graphics/Urho3D/Math/Rect.cpp
src/Graphics/Urho3D/Math/Sphere.cpp
src/Graphics/Urho3D/Math/StringHash.cpp
src/Graphics/Urho3D/Math/Vector2.cpp
src/Graphics/Urho3D/Math/Vector3.cpp
src/Graphics/Urho3D/Math/Vector4.cpp
src/Graphics/Urho3D/Network/Connection.cpp
src/Graphics/Urho3D/Network/Events.cpp
src/Graphics/Urho3D/Network/Network.cpp
src/Graphics/Urho3D/Resource/Cache.cpp
src/Graphics/Urho3D/Resource/Image.cpp
src/Graphics/Urho3D/Resource/Resource.cpp
src/Graphics/Urho3D/Resource/XMLElement.cpp
src/Graphics/Urho3D/Resource/XMLFile.cpp
src/Graphics/Urho3D/Scene/Animatable.cpp
src/Graphics/Urho3D/Scene/Component.cpp
src/Graphics/Urho3D/Scene/CustomLogicComponent.cpp
src/Graphics/Urho3D/Scene/Events.cpp
src/Graphics/Urho3D/Scene/LogicComponent.cpp
src/Graphics/Urho3D/Scene/Node.cpp
src/Graphics/Urho3D/Scene/Scene.cpp
src/Graphics/Urho3D/Scene/Serializable.cpp
src/Graphics/Urho3D/UI/BorderImage.cpp
src/Graphics/Urho3D/UI/Button.cpp
src/Graphics/Urho3D/UI/CheckBox.cpp
src/Graphics/Urho3D/UI/Cursor.cpp
src/Graphics/Urho3D/UI/DropDownList.cpp
src/Graphics/Urho3D/UI/Element.cpp
src/Graphics/Urho3D/UI/Events.cpp
src/Graphics/Urho3D/UI/FileSelector.cpp
src/Graphics/Urho3D/UI/Font.cpp
src/Graphics/Urho3D/UI/FontFace.cpp
src/Graphics/Urho3D/UI/FontFaceBitmap.cpp
src/Graphics/Urho3D/UI/FontFaceFreeType.cpp
src/Graphics/Urho3D/UI/LineEdit.cpp
src/Graphics/Urho3D/UI/ListView.cpp
src/Graphics/Urho3D/UI/Menu.cpp
src/Graphics/Urho3D/UI/MessageBox.cpp
src/Graphics/Urho3D/UI/ProgressBar.cpp
src/Graphics/Urho3D/UI/ScrollBar.cpp
src/Graphics/Urho3D/UI/ScrollView.cpp
src/Graphics/Urho3D/UI/Slider.cpp
src/Graphics/Urho3D/UI/Sprite.cpp
src/Graphics/Urho3D/UI/Text.cpp
src/Graphics/Urho3D/UI/Text3D.cpp
src/Graphics/Urho3D/UI/ToolTip.cpp
src/Graphics/Urho3D/UI/UI.cpp
src/Graphics/Urho3D/UI/UIBatch.cpp
src/Graphics/Urho3D/UI/View3D.cpp
src/Graphics/Urho3D/UI/Window.cpp
build-depends: base
, urho3d-bindgen
, containers
, inline-c
, inline-c-cpp
, deepseq
, transformers
, mtl
, exceptions
, loch-th
, template-haskell
, StateVar
, raw-strings-qq
, lens
, text
, bytestring
, stm
, hashable
, unordered-containers
, vector >= 0.11.0.0
, containers >= 0.5.6.2
, sdl2 >= 2.1.1
default-extensions:
ConstraintKinds
CPP
DeriveGeneric
FlexibleContexts
FlexibleInstances
ForeignFunctionInterface
FunctionalDependencies
GeneralizedNewtypeDeriving
MultiParamTypeClasses
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
UndecidableInstances
default-language: Haskell2010
ghc-options: -Wall
extra-libraries: Urho3D, stdc++
if flag(debug-shared)
cpp-options: -DSHARED_DEBUG
if flag(Urho3DOpenGL)
cpp-options: -DURHO3D_OPENGL
else
if flag(Urho3DD3D11)
cpp-options: -DURHO3D_D3D11
executable urho3d-haskell-sample01
hs-source-dirs: app/sample01, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample02
hs-source-dirs: app/sample02, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample03
hs-source-dirs: app/sample03, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample04
hs-source-dirs: app/sample04, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample05
hs-source-dirs: app/sample05, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
Rotator
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample06
hs-source-dirs: app/sample06, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
Mover
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample07
hs-source-dirs: app/sample07, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample08
hs-source-dirs: app/sample08, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, urho3d-haskell
, StateVar
, lens
, mtl
, thyme
, old-locale
, raw-strings-qq
, text
, vector
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
executable urho3d-haskell-sample34
hs-source-dirs: app/sample34, app/common
main-is: Main.hs
ghc-options: -Odph -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -threaded -rtsopts -with-rtsopts=-N
other-modules: Sample
Internal.Sample
build-depends: base
, bytestring
, lens
, mtl
, old-locale
, raw-strings-qq
, StateVar
, store-core
, text
, thyme
, urho3d-haskell
, vector
default-extensions:
MultiWayIf
OverloadedStrings
QuasiQuotes
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeFamilies
default-language: Haskell2010
if flag(examples)
Buildable: True
else
Buildable: False
source-repository head
type: git
location: [email protected]:Teaspot-Studio/Urho3D-Haskell.git