diff options
author | stuebinm | 2022-02-28 00:39:54 +0100 |
---|---|---|
committer | stuebinm | 2022-02-28 00:39:54 +0100 |
commit | 8a201e8658c9365d301a7cda9077ddf005b014c9 (patch) | |
tree | c2f400c9c7d52c179682e57061709391b0ca05bd /walint.cabal | |
parent | 55c2994e856ceaf82edd06587e2faffb7c58950c (diff) |
separate tiled modules out into own package
Diffstat (limited to '')
-rw-r--r-- | walint.cabal | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/walint.cabal b/walint.cabal index 94d79f5..0bc387a 100644 --- a/walint.cabal +++ b/walint.cabal @@ -28,8 +28,6 @@ library LintWriter Paths Properties - Tiled - TiledAbstract Uris Paths_walint hs-source-dirs: @@ -53,12 +51,33 @@ library , regex-tdfa , text , text-metrics + , tiled , transformers , universum , uri-encode , vector default-language: Haskell2010 +library tiled + exposed-modules: + Data.Tiled + Data.Tiled.Abstract + other-modules: + Paths_walint + hs-source-dirs: + tiled + default-extensions: + NoImplicitPrelude + ghc-options: -Wall -Wno-name-shadowing -Wno-unticked-promoted-constructors + build-depends: + aeson + , base + , bytestring + , text + , universum + , vector + default-language: Haskell2010 + executable walint main-is: Main.hs other-modules: |