mirror of
https://github.com/haskell/ghcide.git
synced 2024-11-30 01:22:34 +03:00
5da86c3e44
* Rename hie-core to ghcide The name `hie-core` has caused a lot of confusion as to how we relate to haskell-ide-engine so changing it should hopefully help with that. I also think that ghcide is still a good name once we hopefully integrate with haskell-ide-engine more closely. The name ghcide seems to have a reasonable amount of support on Twitter https://twitter.com/ndm_haskell/status/1170681262987710464 which is of course the only good way to come up with names. * Add a readme that points people to the new directory. * Fix bogus replacements * Use a proper link * links are hard
7 lines
588 B
Batchfile
7 lines
588 B
Batchfile
:: Copyright (c) 2019 The DAML Authors. All rights reserved.
|
|
:: SPDX-License-Identifier: Apache-2.0
|
|
|
|
@REM Install ghcide where cabal install would put it on Windows
|
|
@REM but avoid checking configure or installing local libraries (faster)
|
|
ghc Main -o dist\obj\ghcide.exe -XBangPatterns -XDeriveGeneric -XGeneralizedNewtypeDeriving -XLambdaCase -XNamedFieldPuns -XRecordWildCards -XScopedTypeVariables -XStandaloneDeriving -XTupleSections -XTypeApplications -XViewPatterns -package=ghc -DGHC_STABLE -isrc -iexe -outputdir dist\obj && copy dist\obj\ghcide.exe %AppData%\cabal\bin\ghcide.exe
|