-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeeplink.cabal
72 lines (68 loc) · 2.4 KB
/
deeplink.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
name: deeplink
version: 0.1.0.3
synopsis: Automatically link C projects via macro invocations in source files
description: For a full description, read deeplink's README.md
homepage: https://github.com/ElastiLotem/deeplink
license: GPL-2
license-file: LICENSE
author: Eyal Lotem
maintainer: eyal.lotem@elastifile.com
-- copyright:
category: Development
build-type: Custom
extra-source-files: README.md include/*.h stack.yaml
cabal-version: >=1.10
Library
ghc-options: -O2 -Wall
exposed-modules: System.FilePath.ByteString, DeepLink, DeepLink.Dot
other-modules: OrderedSet
default-extensions: NoImplicitPrelude
other-extensions: OverloadedStrings
build-depends: base >=4.6
, base-compat >= 0.8.2
, bytestring >=0.10
, unix >=2.7
, elf >=0.27
, bytestring-mmap >=0.2
, containers >=0.5
, pcre-utils >=0.1.7
hs-source-dirs: src
default-language: Haskell2010
executable deeplink
main-is: Main.hs
ghc-options: -O2 -Wall
default-extensions: NoImplicitPrelude
other-extensions: CPP
build-depends: base
, containers >=0.5
, optparse-applicative >=0.11
, process >=1.2
, base-compat
, bytestring
, deeplink
, unix
default-language: Haskell2010
executable deeplinkread
main-is: ReadOFile.hs
ghc-options: -O2 -Wall
default-extensions: NoImplicitPrelude
other-extensions: CPP
build-depends: base
, base-compat
, bytestring
, deeplink
default-language: Haskell2010
Test-Suite test-foo
type: exitcode-stdio-1.0
ghc-options: -Wall
main-is: test-order.hs
hs-source-dirs: test
default-extensions: NoImplicitPrelude
other-extensions: OverloadedStrings, CPP
build-depends: base
, filepath >=1.4
, base-compat
, deeplink
, process
, bytestring
default-language: Haskell2010