We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8466bc1 commit 81ba215Copy full SHA for 81ba215
ghcide/bench/hist/Main.hs
@@ -57,7 +57,6 @@ import Numeric.Natural (Natural)
57
import System.Console.GetOpt
58
import System.FilePath
59
60
-
61
configPath :: FilePath
62
configPath = "bench/config.yaml"
63
@@ -88,6 +87,8 @@ ghcideBuildRules :: MkBuildRules BuildSystem
88
87
ghcideBuildRules = MkBuildRules findGhcForBuildSystem "ghcide" projectDepends buildGhcide
89
where
90
projectDepends = do
+ need . map ("../hls-graph/src" </>) =<< getDirectoryFiles "../hls-graph/src" ["//*.hs"]
91
+ need . map ("../hls-plugin-api/src" </>) =<< getDirectoryFiles "../hls-plugin-api/src" ["//*.hs"]
92
need . map ("src" </>) =<< getDirectoryFiles "src" ["//*.hs"]
93
need . map ("session-loader" </>) =<< getDirectoryFiles "session-loader" ["//*.hs"]
94
need =<< getDirectoryFiles "." ["*.cabal"]
0 commit comments