-
Notifications
You must be signed in to change notification settings - Fork 0
/
pegc.cabal
48 lines (45 loc) · 1.98 KB
/
pegc.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
name: pegc
author: Remy Goldschmidt
version: 0.0.1
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: System
copyright: 2016 Remy Goldschmidt <taktoa@gmail.com>
extra-source-files: README.md
maintainer: taktoa@gmail.com
homepage: https://github.com/taktoa/pegc
bug-reports: https://github.com/taktoa/pegc/issues
license-file: LICENSE.md
license: MIT
synopsis: PEG parser generator targeting C++ with PEGTL.
description: A parser generator, similar to BNFC, that takes a
parsing expression grammar and outputs C++ for it
using the PEGTL library.
source-repository head
type: git
location: https://github.com/taktoa/pegc.git
library
build-depends: base == 4.*
, bytestring == 0.10.*
, text == 1.2.*
, lens == 4.14.*
, aeson == 0.11.*
, containers == 0.5.*
, parsers == 0.12.*
, trifecta == 1.6.*
, language-c == 0.5.*
default-language: Haskell2010
exposed-modules: PEGC
PEGC.Types
ghc-options: -Wall -O2 -g
-fno-warn-type-defaults
-fno-warn-unused-do-bind
-fno-warn-unused-imports
ghc-prof-options: -auto-all
hs-source-dirs: src
executable pegc
build-depends: base == 4.*, pegc
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -g
main-is: src/Main.hs