mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-23 22:27:25 +03:00
28 lines
722 B
Plaintext
28 lines
722 B
Plaintext
Name: cryptol-test-runner
|
|
Version: 2.0
|
|
Synopsis: Testing framework for cryptol-2
|
|
License: BSD3
|
|
Author: Galois, Inc.
|
|
Maintainer: cryptol@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,filepath,test-lib
|
|
GHC-options: -Wall -O2
|
|
Default-language: Haskell2010
|
|
|
|
if os(windows)
|
|
build-depends: regex-compat
|
|
|
|
if os(linux) && flag(static)
|
|
ld-options: -static -pthread
|