-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmacros.cabal
26 lines (24 loc) · 969 Bytes
/
macros.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
-- Initial macros.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: macros
version: 0.1.0.0
synopsis: A more powerful C/C++ macro preprocessor
-- description:
homepage: https://github.com/blackhole89/macros
license: GPL-3
license-file: LICENSE
author: Matvey Soloviev
maintainer: blackhole89@gmail.com
-- copyright:
category: Development
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable macros
main-is: macros.hs
other-modules: MacroProcessor, Parser, Types
other-extensions: FlexibleContexts
build-depends: base >=4.11 && <4.12, parsec >=3.1 && <3.2, containers >=0.5 && <0.6, mtl >=2.2 && <2.3, filepath >=1.4
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2