mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-16 22:52:41 +03:00
4a9010ba10
* Add a .gitignore just for the hie-core piece * Add standalone pieces to make hie-core work with a global Cabal install * Add more things to .gitignore, PR suggestion * Add copyright header
7 lines
634 B
Batchfile
7 lines
634 B
Batchfile
:: Copyright (c) 2019 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
:: SPDX-License-Identifier: Apache-2.0
|
|
|
|
@REM Install hie-core where cabal install would put it on Windows
|
|
@REM but avoid checking configure or installing local libraries (faster)
|
|
ghc Main -o dist\obj\hie-core.exe -XBangPatterns -XDeriveGeneric -XGeneralizedNewtypeDeriving -XLambdaCase -XNamedFieldPuns -XRecordWildCards -XScopedTypeVariables -XStandaloneDeriving -XTupleSections -XTypeApplications -XViewPatterns -package=ghc -DGHC_STABLE -isrc -iexe -outputdir dist\obj && copy dist\obj\hie-core.exe %AppData%\cabal\bin\hie-core.exe
|