-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogicly.cabal
91 lines (84 loc) · 2.58 KB
/
logicly.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cabal-version: >=1.10
-- Initial package description 'logicly.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: logicly
version: 0.1.0.0
synopsis: Evaluation and creation of truth tables for loglic expressions
description:
This package contains the application called logicly that
can be used to create a truth table for aa given logicle expressions.
The truth-table can be filtered for the valuations with satisfies or
does not satisfies the expession.
The application can also be used to evaluate a specific valuation with
the expression.
-- bug-reports:
license: GPL-3
license-file: LICENSE
author: Timo Weike <[email protected]>
maintainer: Timo Weike <[email protected]>
copyright: Copyright (c) 2019 Timo Weike
category:
Application,
Logic,
CLI Tool
build-type: Simple
extra-source-files: CHANGELOG.md
Homepage: https://github.com/Timo-Weike/logicly
flag static
description: Build a static binary.
manual: True
default: False
Source-Repository head
type: git
location: https://github.com/Timo-Weike/logicly
test-suite test
type: exitcode-stdio-1.0
main-is: test-main.hs
other-modules:
LogicExp
LogicExp.Priority
LogicExp.Eval
LogicExp.Valuation
LogicExp.Parse
LogicExp.Core
BaseExt
VersionInfo
Text.Table
build-depends:
base >=4.12,
parsec >=3.1.13.0,
containers >=0.6.2.1,
boxes >=0.1.5,
lens >=4.18.1,
--for testing
hspec >=2.7.1
hs-source-dirs:
src
default-language: Haskell2010
executable logicly
main-is: Main.hs
other-modules:
LogicExp
LogicExp.Priority
LogicExp.Eval
LogicExp.Valuation
LogicExp.Parse
LogicExp.Core
BaseExt
VersionInfo
Text.Table
-- other-extensions:
build-depends:
base >=4.12 && <4.13,
parsec >=3.1.13.0,
containers >=0.6.2.1,
boxes >=0.1.5,
lens >=4.18.1
hs-source-dirs:
src
if flag(static)
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall -static -optl-static
else
ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2 -Wall
default-language: Haskell2010