-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
81 lines (74 loc) · 1.63 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
name: purple-muon
synopsis: A multiplayer space game
description: Please see README.md
build-type: Custom
license: GPL-3
license-file: LICENSE
author: Robin Raymond
maintainer: robin@robinraymond.de
copyright: 2016-2017 Robin Raymond
category: Games
extra-source-files: README.md
github: r-raymond/purple-muon
ghc-options: -Wall
data-files:
- res/png/*
- res/png/gameicons/*
- res/png/gameicons_extended/*
- res/ogg/*
- res/fonts/*
- res/fonts/fyodor/truetype/*
default-extensions:
- DeriveGeneric
- FlexibleContexts
- GeneralizedNewtypeDeriving
- MultiParamTypeClasses
- NoImplicitPrelude
- OverloadedStrings
- ScopedTypeVariables
- TypeFamilies
dependencies:
- base >= 4.7 && < 5
- binary
- bytestring
- containers
- digest
- errors
- fast-logger
- filepath
- formatting
- hashtables
- lens
- linear
- mtl
- network
- optparse-applicative
- protolude
- sdl2
- sdl2-image
- sdl2-mixer
- sdl2-ttf
- stm
- thyme
- vector
- vector-space
- xml
- zlib
library:
source-dirs: src
other-modules:
- Paths_purple_muon
- Version
executables:
pm-client:
source-dirs: client
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- purple-muon
pm-server:
source-dirs: server
main: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
dependencies:
- purple-muon