-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathblt.cabal
57 lines (49 loc) · 1.53 KB
/
blt.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
56
57
name: blt
version: 1.1.0
synopsis: Haskell bindings to BLT
description: Haskell API for the BLT solver. BLT handles bounded
integer linear programming problems using lattice-based
techniques.
license: MIT
license-file: LICENSE
author: Galois Inc.
maintainer: jhendrix@galois.com
copyright: Galois Inc. 2014-2017
category: Development
build-type: Custom
cabal-version: >=1.10
extra-source-files: libblt/Makefile
, libblt/*.cc
, libblt/*.c
, libblt/*.h
, libblt/config.mk.example
, libblt/run_tests.sh
source-repository head
type: git
location: https://github.com/GaloisInc/blt.git
library
default-language: Haskell2010
exposed-modules: BLT.Binding
other-modules: BLT.Internal
build-depends:
base >=4.7 && <5
hs-source-dirs: src
include-dirs: libblt
-- Add extra dependencies for BLT (the haskell library), as well as for
-- BLT the C++ library.
extra-libraries: blt, glpk, ntl, stdc++, m
Test-Suite test-blt
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base >=4.7 && <5
, blt
, QuickCheck >= 2.10
hs-source-dirs: test
default-language: Haskell2010
extra-libraries: blt
custom-setup
setup-depends: base
, directory
, filepath
, Cabal
, process