-
Notifications
You must be signed in to change notification settings - Fork 27
/
checktestdata.cabal
55 lines (52 loc) · 2.04 KB
/
checktestdata.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
49
50
51
52
53
54
55
name: checktestdata
version: 2.0.0
synopsis: Checktestdata is a tool to verify the syntactical integrity of test cases in programming contests like the ACM ICPC.
-- description:
homepage: https://www.domjudge.org/
license: BSD3
license-file: LICENSE
author: DOMjudge developers, Jeroen Bransen
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Checktestdata,
Checktestdata.Script,
Checktestdata.Options
other-modules: Checktestdata.Derived,
Checktestdata.Core,
Checktestdata.Script.AST,
Checktestdata.Script.Interpreter,
Checktestdata.Script.Parser
other-extensions: GADTs
build-depends: base >=4.7 && <4.10,
bytestring >=0.10 && <0.11,
bytestring-lexing >=0.5 && <0.6,
containers >=0.5 && <0.6,
either >=4.3 && <4.5,
mtl >=2.2 && <2.3,
optparse-applicative >= 0.13.1,
regex-tdfa >= 1.2,
uu-parsinglib >= 2.9
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2
executable checktestdata
main-is: Main.hs
hs-source-dirs: src-main
build-depends: base >=4.7 && <4.10,
optparse-applicative >= 0.13.1,
checktestdata -any
default-language: Haskell2010
ghc-options: -Wall -O2
Test-Suite checktestdata-test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: src-main
build-depends: base >=4.7 && <4.10,
directory >= 1.3,
checktestdata -any
default-language: Haskell2010
ghc-options: -Wall -O2