-
Notifications
You must be signed in to change notification settings - Fork 733
Expand file tree
/
Copy pathmy.cabal
More file actions
36 lines (34 loc) · 1.03 KB
/
my.cabal
File metadata and controls
36 lines (34 loc) · 1.03 KB
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
Cabal-version: 3.12
name: PackageMetaModule
version: 0.1
license: BSD-3-Clause
author: Moritz Angermann
stability: stable
category: PackageTests
build-type: Simple
description:
Check that the generated package meta module compiles.
Library
exposed-modules:
PackageMeta_PackageMetaModule
Paths_PackageMetaModule
build-depends: base
default-language: Haskell2010
default-extensions:
-- This is a non-exhaustive list of extensions that can cause code to
-- not compile when it would if the extension was disabled. This ensures
-- that autogen modules are compatible with default extensions.
NoImplicitPrelude
CPP
TemplateHaskell
QuasiQuotes
Arrows
OverloadedStrings
if impl(ghc >= 6.12)
default-extensions: MonoLocalBinds
if impl(ghc >= 7.0.1)
default-extensions: RebindableSyntax
if impl(ghc >= 7.4.1)
default-extensions: NoTraditionalRecordSyntax
if impl(ghc >= 7.8.1)
default-extensions: OverloadedLists