We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2acc1c commit 03bde19Copy full SHA for 03bde19
haskell-language-server.cabal
@@ -2337,11 +2337,16 @@ test-suite ghcide-bench-test
2337
RecordWildCards
2338
ViewPatterns
2339
2340
+flag plugin-tutorial
2341
+ description: Build the plugin tutorial executable
2342
+ default: True
2343
+ manual: True
2344
+
2345
executable plugin-tutorial
2346
import: defaults
2347
-- The plugin tutorial is only compatible with 9.6 and 9.8.
2348
-- No particular reason, just to avoid excessive CPP.
- if (impl(ghc >= 9.6) && impl(ghc < 9.10))
2349
+ if flag(plugin-tutorial) && (impl(ghc >= 9.6) && impl(ghc < 9.10))
2350
buildable: True
2351
else
2352
buildable: False
0 commit comments