-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposable-sdr.cabal
73 lines (68 loc) · 2.84 KB
/
composable-sdr.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
cabal-version: 2.4
name: composable-sdr
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/mryndzionek/composable-sdr
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Mariusz Ryndzionek
maintainer: [email protected]
copyright: 2020 Ryndzionek Mariusz
category: Control, Concurrency, Streaming, Reactivity, Hardware
extra-source-files: README.md
library
exposed-modules: ComposableSDR
build-depends: base ^>=4.12, bytestring, mtl,
streamly==0.7.2, fusion-plugin, filepath,
hsndfile, exceptions, storable-tuple, monad-control
hs-source-dirs: src
include-dirs: src
other-modules: ComposableSDR.Common,
ComposableSDR.Sink,
ComposableSDR.Source
ComposableSDR.Trans
ComposableSDR.Liquid
ComposableSDR.Types
build-tool-depends: c2hs:c2hs
ghc-options: -Wall -O2
-fdicts-strict
-fmax-worker-args=16
-fspec-constr-recursive=16
-fplugin=Fusion.Plugin
default-language: Haskell2010
extra-lib-dirs: /usr/local/lib
extra-libraries: SoapySDR, liquid
default-extensions: OverloadedStrings, ScopedTypeVariables, FlexibleContexts
executable soapy-sdr
main-is: SoapySDR.hs
build-depends: base ^>=4.12, binary, directory,
containers, optparse-applicative,
streamly==0.7.2, fusion-plugin,
composable-sdr
hs-source-dirs: apps
ghc-options: -Wall -O2
-fdicts-strict
-fmax-worker-args=16
-fspec-constr-recursive=16
-fplugin=Fusion.Plugin
default-language: Haskell2010
default-extensions: OverloadedStrings, ScopedTypeVariables, FlexibleContexts
executable cabal2appimage
main-is: Cabal2AppImage.hs
build-depends: base ^>=4.12, directory, process, monad-extras,
containers, optparse-applicative, text, listsafe,
filepath
hs-source-dirs: apps
ghc-options: -Wall -g -O0
default-language: Haskell2010
default-extensions: OverloadedStrings, ScopedTypeVariables, FlexibleContexts
executable helidecode
main-is: HeliDecode.hs
build-depends: base ^>=4.12, bytestring, binary, split, megaparsec,
replace-megaparsec, filepath, listsafe
hs-source-dirs: apps
ghc-options: -Wall -O2
default-language: Haskell2010
default-extensions: OverloadedStrings, ScopedTypeVariables, FlexibleContexts