-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaudioDB.cabal
More file actions
38 lines (34 loc) · 1.17 KB
/
audioDB.cabal
File metadata and controls
38 lines (34 loc) · 1.17 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
name: audioDB
version: 0.1
synopsis: Bindings to the libaudioDB feature database
homepage: https://github.com/TransformingMusicology/libaudioDB-haskell
author: Richard Lewis
license: GPL
copyright: (C) 2014-2016 Richard Lewis
build-type: Simple
cabal-version: >= 1.8
library
build-depends: base, filepath, vector, containers, parsec, MissingH, text, swish
exposed-modules: Sound.Audio.Database, Sound.Audio.Database.Ingest, Sound.Audio.Database.Query, Sound.Audio.Database.Types, Sound.Audio.Features, Sound.Audio.Features.ReadCSV, Sound.Audio.Features.ReadTurtle
other-modules: AudioDB.API
hs-source-dirs: src
ghc-options: -Wall
executable api-test
build-depends: base, vector
main-is: APITest.hs
other-modules: AudioDB.API
hs-source-dirs: tests, src
ghc-options: -Wall
extra-libraries: audioDB
executable audiodb-test
build-depends: base, vector, parsec, MissingH, filepath, audioDB
main-is: AudioDBTest.hs
hs-source-dirs: tests
ghc-options: -Wall
extra-libraries: audioDB
executable tests
build-depends: base, vector, parsec, MissingH, filepath, audioDB, HUnit
main-is: LibTests.hs
hs-source-dirs: tests
ghc-options: -Wall
extra-libraries: audioDB