RtMidi 0.5.0.1 → 0.5.0.2
raw patch · 2 files changed
+5/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +0/−1
- RtMidi.cabal +5/−3
README.md view
@@ -27,5 +27,4 @@ ## TODO -* Add Windows MM support. This should only require a few changes to the Cabal file. * See if there is a way to autodetect Jack in the Cabal file.
RtMidi.cabal view
@@ -1,6 +1,6 @@ cabal-version: 3.0 name: RtMidi-version: 0.5.0.1+version: 0.5.0.2 synopsis: Haskell wrapper for RtMidi, the lightweight, cross-platform MIDI I/O library. description: Please see the README on GitHub at <https://github.com/riottracker/RtMidi#readme> category: Sound@@ -45,8 +45,6 @@ cxx-sources: rtmidi/RtMidi.cpp rtmidi/rtmidi_c.cpp - -- TODO(ejconlon) Add windows support- if os(linux) if flag(alsa) && flag(jack) cxx-options: -D__LINUX_ALSA__ -D__UNIX_JACK__@@ -71,6 +69,10 @@ -- avoid https://gitlab.haskell.org/ghc/ghc/issues/11829 ld-options: -Wl,-keep_dwarf_unwind ghc-options: -pgmc=clang++++ if os(mingw32)+ cxx-options: -D__WINDOWS_MM__+ extra-libraries: winmm executable rtmidi-callback main-is: callback.hs