-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathzef.cabal
More file actions
40 lines (38 loc) · 761 Bytes
/
zef.cabal
File metadata and controls
40 lines (38 loc) · 761 Bytes
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
name: zef
version: 1.0.0
synopsis: Zef Computer Vision Framework
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
library
hs-source-dirs: src
exposed-modules:
Zef
Zef.Internal.Types
Zef.Internal.Image
Zef.Internal.Fusion
Zef.Internal.FusionOps
Zef.Image
Zef.Math
Zef.Primitives
Zef.UI
Zef.Pyramid
Zef.FileUtils
c-sources:
src/interop/zef_core.cpp
include-dirs:
/usr/local/include/opencv2
src/interop
extra-libraries:
opencv_core
opencv_highgui
opencv_imgproc
c++
extra-lib-dirs: /usr/local/lib
build-depends:
base < 5,
directory,
filepath
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -O2