mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-01 08:32:23 +03:00
fcf5230bbd
Make it work with GHC 8.2
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
Name: cryptol-test-runner
|
|
Version: 2.0
|
|
Synopsis: Testing framework for cryptol-2
|
|
License: AllRightsReserved
|
|
Author: Galois, Inc.
|
|
Maintainer: trevor@galois.com
|
|
Copyright: Galois Inc.
|
|
Category: Language
|
|
Build-type: Simple
|
|
Cabal-version: >= 1.10
|
|
|
|
|
|
flag static
|
|
default: False
|
|
description: Create a statically-linked binary
|
|
|
|
executable cryptol-test-runner
|
|
Main-is: Main.hs
|
|
build-depends: base,
|
|
base-compat,
|
|
containers,
|
|
process,
|
|
filepath,
|
|
directory,
|
|
HUnit,
|
|
test-framework,
|
|
test-framework-hunit,
|
|
semigroups
|
|
GHC-options: -Wall -O2
|
|
Default-language: Haskell2010
|
|
|
|
if os(windows)
|
|
build-depends: regex-compat
|
|
|
|
if os(linux) && flag(static)
|
|
ld-options: -static -pthread
|