-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfigsynth.cabal
71 lines (64 loc) · 1.9 KB
/
figsynth.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
cabal-version: 2.4
name: figsynth
version: 1.0.0
synopsis: Polygonal synthesizer
description: FigSynth is a polygonal synthesis program.
category: Audio, Sound
license: GPL-3.0-only
copyright: (C) 2024 Emil Overbeck
maintainer: emil.a.overbeck at gmail dot com
author: Emil Overbeck
homepage: https://github.com/Swarthe/figsynth
bug-reports: https://github.com/Swarthe/figsynth
extra-source-files: README.md
license-file: LICENSE.txt
build-type: Simple
source-repository head
type: git
location: https://github.com/Swarthe/figsynth
executable figsynth
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Wredundant-constraints
-funbox-small-strict-fields
other-modules:
Synth.Server
, Synth.Source
, Synth.Source.Params
, Synth.Source.Polygon
, Synth.Source.Buffer
, Synth.GUI
, Synth.GUI.Common
, Synth.GUI.Input
, Synth.GUI.Graph
build-depends:
base ^>= 4.16.4.0
, vivid ^>= 0.5.2.0
, vivid-supercollider ^>= 0.4.1.2
, monomer ^>= 1.6.0.1
, text ^>= 2.1.1
, text-show ^>= 3.10.4
, unix ^>= 2.8.5.0
, directory ^>= 1.3.8.3
, bytestring ^>= 0.11.5.3
, vector ^>= 0.13.1.0
, managed ^>= 1.0.10
, process ^>= 1.6.18.0
, data-default ^>= 0.7.1.1
, stm ^>= 2.5.3.0
pkgconfig-depends:
opengl
, sdl2
, glew
default-extensions:
ImportQualifiedPost
, LambdaCase
, ViewPatterns
, NumericUnderscores
, BlockArguments
, NamedFieldPuns
, RecordWildCards
, LexicalNegation
, OverloadedStrings