-
Notifications
You must be signed in to change notification settings - Fork 0
/
hailstone.cabal
36 lines (34 loc) · 1.16 KB
/
hailstone.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
name: hailstone
version: 0.1.0.0
synopsis: haskell audio synthesis + music composition
-- description:
homepage: https://github.com/namanhd1nh/hailstone
license: MIT
license-file: LICENSE
author: namanh
maintainer: namanh@uchicago.edu
copyright: 2021 namanh
category: Sound
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
ghc-options: -Wall -O3 -threaded
default-language: Haskell2010
exposed-modules: Sound.Hailstone.Synth
, Sound.Hailstone.Types
, Sound.Hailstone.SDLAudio
build-depends: base >= 4.7 && < 5
, sdl2
, vector
, mtl
executable hailstone-test
hs-source-dirs: exe
main-is: Main.hs
ghc-options: -Wall -O3 -threaded
-- note that -threaded is required for anything that FFIs to SDL2, otherwise
-- it will segfault/crash horribly!
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, hailstone