forked from tidalcycles/Tidal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtidal-link.cabal
82 lines (69 loc) · 1.91 KB
/
tidal-link.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
80
81
82
cabal-version: 2.4
name: tidal-link
version: 1.0.3
synopsis: Ableton Link integration for Tidal
-- description:
homepage: http://tidalcycles.org/
license: GPL-3.0-only
license-file: LICENSE
author: Pierre Krafft
maintainer: Pierre Krafft <[email protected]>, Alex McLean <[email protected]>
Stability: Experimental
Copyright: (c) Pierre Krafft and contributors, 2021
category: Sound
build-type: Simple
tested-with: GHC == 9.2.4
extra-source-files:
README.md
link/**/*.hpp
link/**/*.ipp
link/**/*.h
description: Ableton Link integration for Tidal, to let Tidal sync with external clocks
library
ghc-options: -Wall
hs-source-dirs: src/hs
default-language: Haskell2010
exposed-modules: Sound.Tidal.Link
Sound.Tidal.Clock
build-depends:
base >=4.8 && <5,
hosc,
mtl,
stm
if os(windows)
extra-libraries:
iphlpapi
winmm
ws2_32
cxx-options:
-DLINK_PLATFORM_WINDOWS=1 -Wno-multichar
elif os(darwin)
cxx-options:
-DLINK_PLATFORM_MACOSX=1 -std=c++14 -Wno-multichar -Wno-subobject-linkage
else
cxx-options:
-DLINK_PLATFORM_LINUX=1 -std=c++14 -Wno-multichar -Wno-subobject-linkage
if impl(ghc >= 9.4)
build-depends: system-cxx-std-lib
else
if os(darwin)
extra-libraries: c++
else
extra-libraries: stdc++
cxx-sources: link/extensions/abl_link/src/abl_link.cpp
include-dirs:
link/include
link/modules/asio-standalone/asio/include
link/extensions/abl_link/include
source-repository head
type: git
location: https://github.com/tidalcycles/Tidal
executable linktest
ghc-options: -Wall
hs-source-dirs:
src/hs
main-is: Main.hs
default-language: Haskell2010
Build-depends:
base >=4.8 && <5,
tidal-link