-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcgbtools.cabal
More file actions
84 lines (74 loc) · 1.6 KB
/
cgbtools.cabal
File metadata and controls
84 lines (74 loc) · 1.6 KB
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.8
name: cgbtools
version: 1.1.0
synopsis: Tools for working with 15-bit color.
description: Tools for working with 15-bit color (and particularly the Game Boy Color).
license: MIT
license-file: LICENSE
author: ix
maintainer: ix
build-type: Simple
common ghc-flags
ghc-options: -Wall -Werror -Wunused-imports -Wunused-packages -O2
common extensions
default-extensions:
BinaryLiterals
DerivingVia
ImportQualifiedPost
InstanceSigs
LambdaCase
NoImplicitPrelude
OverloadedStrings
PatternSynonyms
RecordWildCards
ScopedTypeVariables
StrictData
TupleSections
ViewPatterns
library
import: ghc-flags, extensions
build-depends:
, attoparsec
, base
exposed-modules:
Data.RGB15
Data.RGB15.Parsing
Data.Word5
hs-source-dirs: src
default-language: Haskell2010
executable rgb15
import: ghc-flags, extensions
main-is: rgb15.hs
build-depends:
, base
, cgbtools
, text
hs-source-dirs: exe
default-language: Haskell2010
executable rgb24
import: ghc-flags, extensions
main-is: rgb24.hs
build-depends:
, base
, cgbtools
, text
hs-source-dirs: exe
default-language: Haskell2010
executable cgbify
import: ghc-flags, extensions
main-is: cgbify.hs
build-depends:
, base
, cgbtools
, text
hs-source-dirs: exe
default-language: Haskell2010
test-suite tests
import: ghc-flags, extensions
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: tests
build-depends:
, base
, cgbtools
, QuickCheck