-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyphoto.cabal
102 lines (93 loc) · 2.84 KB
/
myphoto.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
cabal-version: 3.0
name: myphoto
version: 0.1.0.0
synopsis: my tooling to do stack in macro photography
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Maximilian Huber
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall -threaded
library
import: warnings
exposed-modules:
MyPhoto.Stack,
MyPhoto.WatchForStacks,
MyPhoto.Model,
MyPhoto.Utils.Chunking
other-modules:
MyPhoto.Utils.Samples,
MyPhoto.Actions.Align,
MyPhoto.Actions.EnblendEnfuse,
MyPhoto.Actions.Metadata,
MyPhoto.Actions.FileSystem,
MyPhoto.Actions.FocusStack,
MyPhoto.Actions.Montage,
MyPhoto.Actions.Outliers,
MyPhoto.Actions.UnRAW,
MyPhoto.Actions.UnTiff,
MyPhoto.Actions.UnHeif,
MyPhoto.Wrapper.DcrawWrapper,
MyPhoto.Wrapper.EnblendEnfuseWrapper,
MyPhoto.Wrapper.FocusStackWrapper,
MyPhoto.Video,
MyPhoto.Monad
other-extensions: OverloadedStrings
build-depends: base,
SafeSemaphore,
aeson,
async,
bytestring,
bytestring,
containers,
directory,
directory-tree,
filepath,
loadavg,
mtl,
netpbm,
optparse-applicative,
process,
split,
statistics,
temporary,
text,
time,
unix,
vector,
hsexif,
dir-traverse,
data-default
hs-source-dirs: src
default-language: Haskell2010
executable myphoto-stack
import: warnings
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts
build-depends: base,
myphoto
hs-source-dirs: app-stack
default-language: Haskell2010
executable myphoto-watch
import: warnings
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts
build-depends: base,
myphoto
hs-source-dirs: app-watch
default-language: Haskell2010
test-suite test-myphoto
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
build-depends: base,
myphoto,
test-framework,
test-framework-hunit,
HUnit