-
Notifications
You must be signed in to change notification settings - Fork 0
/
chops.cabal
82 lines (74 loc) · 1.76 KB
/
chops.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
cabal-version: 2.4
-- Initial package description 'cairodraw.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: chops
version: 0.1.0.0
synopsis: C(ontrolled)H(andling)O(f)P(laying)S(amples)
description: A asm style language for a VM controlling playback of samples
-- bug-reports:
license: BSD-2-Clause
license-file: LICENSE
author: Maurizio Di Pietro
maintainer: dc1mdp@gmail.com
copyright: Maurizio Di Pietro 2020
category: Music , Audio , Language
build-type: Simple
extra-source-files: CHANGELOG.md
common shared-config
build-depends:
base
,mtl
,containers
,parsec
,containers
,formatting
,vector
,hsndfile
,hsndfile-vector
,jack
,transformers
,random
,explicit-exception
,array
,event-list
,midi
,mtl
,MonadRandom
,extra
,bytestring
,cairo-canvas
,linear
,sdl2
,sdl2-cairo
,async
default-language: Haskell2010
GHC-Options: -O2 -fllvm -fast-llvm
library
import: shared-config
other-modules:
Chops.AST
Chops.Cpu
Chops.Parser
Chops.WSpace
Chops.Audio
Chops.Time
Chops.RBuf
Chops.GUI
exposed-modules:
Chops
executable chops-exe
import: shared-config
main-is: Main.hs
other-modules:
Chops.AST
Chops.Cpu
Chops.Parser
Chops.WSpace
Chops.Audio
Chops.Time
Chops.RBuf
Chops.GUI
Chops
build-depends:
GHC-Options: -O2 -threaded -rtsopts "-with-rtsopts=-N -xn -s -w -A128k -H2m "
-- GHC-Options: -O2 -threaded -rtsopts "-with-rtsopts=-N -p -s -I0.1 -hr"