-
Notifications
You must be signed in to change notification settings - Fork 1
/
yodawg.cabal
31 lines (28 loc) · 1.37 KB
/
yodawg.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
-- Initial yodawg.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: yodawg
version: 0.0.0.1
synopsis: DWG parsing library
-- description:
homepage: https://github.com/polachok/yodawg
license: OtherLicense
license-file: LICENSE
author: Alexander Polakov
maintainer: [email protected]
-- copyright:
category: Data
build-type: Simple
cabal-version: >=1.8
extra-source-files: src/Data/Binary/Format/DWG/spec.txt
library
exposed-modules: Data.Binary.Format.DWG.File, Data.Binary.Format.DWG.FFI
c-sources: src/Data/Binary/Format/DWG/call.c
ghc-options: -fPIC -optl-static
cc-options: -fPIC
other-modules: Data.Binary.Format.DWG.Util, Data.Binary.Format.DWG.ObjectMap,
Data.Binary.Format.DWG.FileHeader, Data.Binary.Format.DWG.Types,
Data.Binary.Format.DWG.HeaderVariables,
Data.Binary.Format.DWG.TH, Data.Binary.Format.DWG.Bitcoded,
Data.Binary.Format.DWG.Classes
build-depends: base >=4.5, template-haskell >=2.7, attoparsec >=0.10, bytestring >=0.9, binary >=0.7, data-binary-ieee754 >=0.4, binary-bits >=0.3, containers >=0.4, mtl >=2.1, transformers >=0.3, directory >=1.1
hs-source-dirs: src