From aab0ff2b9dc1a961514137ec66620f5f4570c2dc Mon Sep 17 00:00:00 2001 From: Jesse Selover Date: Mon, 26 Jun 2023 14:45:38 +0200 Subject: [PATCH] Don't build dynamic libraries for tidal-listener on Windows. --- tidal-listener/tidal-listener.cabal | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tidal-listener/tidal-listener.cabal b/tidal-listener/tidal-listener.cabal index 75ef2bfe4..464d8caa8 100644 --- a/tidal-listener/tidal-listener.cabal +++ b/tidal-listener/tidal-listener.cabal @@ -33,8 +33,9 @@ library default-language: Haskell2010 ghc-options: -threaded -Wall - -dynamic-too -- see: https://github.com/haskell-hint/hint/issues/156 + if !os(windows) + ghc-options: -dynamic-too executable tidal-listener @@ -46,5 +47,6 @@ executable tidal-listener default-language: Haskell2010 ghc-options: -threaded -Wall - -dynamic -- see: https://github.com/haskell-hint/hint/issues/156 + if !os(windows) + ghc-options: -dynamic-too