-
Notifications
You must be signed in to change notification settings - Fork 1
/
haskell-sanitize.cabal
39 lines (28 loc) · 1.03 KB
/
haskell-sanitize.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
-- Initial haskell-santize.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: haskell-sanitize
version: 0.1.0.0
license: BSD3
license-file: LICENSE
author: Erik de Castro Lopo
maintainer: [email protected]
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall -O2
build-depends: base >= 4.9 && < 4.10
exposed-modules: Sanitize.Dodgy
include-dirs: csrc
install-includes: dodgy.h
c-sources: csrc/dodgy.c
cc-options: -std=c99 -O0 -Wall -Werror -fsanitize=address -g
extra-libraries: asan
executable haskell-santize
default-language: Haskell2010
main-is: haskell-sanitize.hs
ghc-options: -Wall -O2
hs-source-dirs: main
build-depends: base >= 4.9 && < 4.10
, haskell-sanitize