-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.yaml
55 lines (52 loc) · 1.02 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
---
name: colortransfer
version: 2.0.0.0
license: MIT
license-file: LICENSE
dependencies:
- base
- hmatrix
- JuicyPixels
- optparse-generic
- relude
ghc-options:
- -fwrite-ide-info
- -Wall
- -Wincomplete-uni-patterns
- -Wincomplete-record-updates
- -Wpartial-fields
- -Widentities
- -Wredundant-constraints
- -Wcpp-undef
- -Wunused-packages
extra-source-files:
- ./test-resources/originals/*.jpg
- ./test-resources/processed/*.jpeg
library:
source-dirs: ./src/
executables:
colortransfer:
main: Main.hs
source-dirs: ./src/
ghc-options:
- -rtsopts
- -threaded
- -O2 -optc-O3 -optc-ffast-math
- -fexcess-precision
- -with-rtsopts=-N
tests:
colortransfer-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N
- -O2 -optc-O3 -optc-ffast-math
- -fexcess-precision
dependencies:
- QuickCheck
- sydtest
- sydtest-discover
- colortransfer
- filepath