summaryrefslogtreecommitdiff
path: root/tiled-hs.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'tiled-hs.cabal')
-rw-r--r--tiled-hs.cabal35
1 files changed, 27 insertions, 8 deletions
diff --git a/tiled-hs.cabal b/tiled-hs.cabal
index fa85e00..094d31b 100644
--- a/tiled-hs.cabal
+++ b/tiled-hs.cabal
@@ -21,16 +21,35 @@ maintainer: stuebinm@disroot.org
-- category:
extra-source-files: CHANGELOG.md
+library
+ default-language: Haskell2010
+ ghc-options: -Wall
+ hs-source-dirs: lib
+ exposed-modules:
+ LintWriter
+ Properties
+ Tiled2
+ Util
+ build-depends: base ^>=4.14.1.0,
+ aeson,
+ bytestring,
+ containers,
+ text,
+ vector,
+ transformers,
+ mtl,
+ either
+
+-- TODO: move more stuff into lib, these dependencies are silly
executable tiled-hs
main-is: Main.hs
- other-modules: Tiled2
-
- -- Modules included in this executable, other than Main.
- -- other-modules:
-
- -- LANGUAGE extensions used by modules in this package.
- -- other-extensions:
build-depends: base ^>=4.14.1.0,
- aeson, bytestring, containers, text, vector, transformers, mtl, either
+ aeson,
+ text,
+ tiled-hs,
+ transformers,
+ containers,
+ vector,
+ mtl
hs-source-dirs: src
default-language: Haskell2010