Skip to content

Commit

Permalink
fix inter-component dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
christo committed Sep 24, 2024
1 parent 4dff5a8 commit 2e236aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
packages:
./vplkb
./web
./vplkb/
./web/

package *
haddock-options: --hyperlinked-source --html --quickjump

with-compiler: ghc-9.4.8
2 changes: 1 addition & 1 deletion vplkb/src/Vplkb.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Vplkb where
module VplKb where

-- experiment in using haskell to define a knowledge base of info about
-- visual programming languages (VPLs)
Expand Down
4 changes: 2 additions & 2 deletions vplkb/vplkb.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall

library vpl
library
-- Import common warning flags.
import: warnings

exposed-modules: Vplkb
exposed-modules: VplKb

-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
Expand Down
1 change: 1 addition & 0 deletions web/web.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ executable site
main-is: site.hs
build-depends: base ^>=4.17.2.1
, hakyll >= 4.16.2.2
, vplkb >= 0.1
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010

0 comments on commit 2e236aa

Please sign in to comment.