-
Notifications
You must be signed in to change notification settings - Fork 0
/
earcut.cabal
32 lines (30 loc) · 1010 Bytes
/
earcut.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
cabal-version: 2.2
-- Initial package description 'earcut.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: earcut
version: 0.1.0.3
synopsis: Binding to C++ earcut library.
-- description:
-- bug-reports:
license: ISC
license-file: LICENSE
author: David Himmelstrup
maintainer: [email protected]
copyright: ISC
homepage: https://github.com/reanimate/earcut
category: Math
extra-source-files: README.md, cbits/earcut.hpp
library
exposed-modules: Geometry.Earcut
-- other-modules:
-- other-extensions:
build-depends: base >= 4.5 && < 4.15, vector
hs-source-dirs: src
default-language: Haskell2010
default-extensions: ForeignFunctionInterface
extra-libraries: stdc++
cxx-sources: cbits/binding.cpp
include-dirs: cbits
if os(darwin) {
cxx-options: -std=c++11
}