-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisevsim.cabal
More file actions
79 lines (71 loc) · 2.71 KB
/
disevsim.cabal
File metadata and controls
79 lines (71 loc) · 2.71 KB
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
Name: DisEvSim
Version: 0.2
Synopsis: Discrete Event Simulator
Description: A simple Discrete Event Simulation framework.
License: GPL
License-file: LICENSE
Author: Drew Haven
Maintainer: Drew Haven <drew.haven@gmail.com>
Build-type: Simple
Cabal-version: >= 1.2
-- library
-- Exposed-modules: DisEvSim,
-- DisEvSim.Debug
-- Other-modules: DisEvSim.Common,
-- DisEvSim.EventQueue,
-- Build-depends: base >= 4,
-- mtl,
-- dlist,
-- containers
library
Exposed-modules: DisEvSim
Other-modules: DisEvSim.Common
DisEvSim.EventQueue
DisEvSim.HandlerMap
DisEvSim.Sim
Build-depends: base >= 4,
containers,
data-default == 0.5.*,
lens,
mtl,
transformers
Ghc-options: -Wall -Werror
extensions: DeriveDataTypeable,
GADTs,
GeneralizedNewtypeDeriving
Test-suite event-queue-properties
type: exitcode-stdio-1.0
main-is: DisEvSim/EventQueueProperties.hs
build-depends: base >=4,
QuickCheck == 2.6.*
Ghc-options: -Wall -Werror -fno-warn-orphans
extensions: DeriveDataTypeable,
GADTs,
GeneralizedNewtypeDeriving
Test-suite handlermap-properties
type: exitcode-stdio-1.0
main-is: DisEvSim/HandlerMapProperties.hs
build-depends: base >=4,
QuickCheck == 2.6.*
Ghc-options: -Wall -Werror -fno-warn-orphans
extensions: DeriveDataTypeable,
GADTs,
GeneralizedNewtypeDeriving
Test-suite sim-properties
type: exitcode-stdio-1.0
main-is: DisEvSim/SimProperties.hs
build-depends: base >=4,
QuickCheck == 2.6.*
Ghc-options: -Wall -Werror -fno-warn-orphans
extensions: DeriveDataTypeable,
GADTs,
GeneralizedNewtypeDeriving
Test-suite counter-test
type: exitcode-stdio-1.0
main-is: Test/Counter.hs
build-depends: base >=4,
HUnit
Ghc-options: -Wall -Werror
extensions: DeriveDataTypeable,
GADTs,
GeneralizedNewtypeDeriving