diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-08 13:21:58 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-08 13:21:58 +0200 |
| commit | 34a0e2ac24bc0b2ac7d98124e54eb2a2d1635d83 (patch) | |
| tree | 3fe6b5b520cf695832535ff86845a72d6fcf0122 /milch.cabal | |
| parent | 723fa29e5ceb2f7ee4a13632ccfe3acf5e8808c2 (diff) | |
Add correct data to project files
Diffstat (limited to 'milch.cabal')
| -rw-r--r-- | milch.cabal | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/milch.cabal b/milch.cabal new file mode 100644 index 0000000..acfcb59 --- /dev/null +++ b/milch.cabal @@ -0,0 +1,90 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.34.4. +-- +-- see: https://github.com/sol/hpack + +name: milch +version: 0.1.0.0 +description: Please see the README on GitHub at <https://github.com/jantuomi/milch#readme> +homepage: https://github.com/jantuomi/milch#readme +bug-reports: https://github.com/jantuomi/milch/issues +author: Jan Tuomi +maintainer: jans.tuomi@gmail.com +copyright: 2022 Jan Tuomi +license: MIT +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + TODO.txt + +source-repository head + type: git + location: https://github.com/jantuomi/milch + +library + exposed-modules: + Builtins + Interpreter + Parser + Tokenizer + Utils + other-modules: + Paths_milch + hs-source-dirs: + src + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 + +executable milch + main-is: Main.hs + other-modules: + Paths_milch + hs-source-dirs: + app + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , milch + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 + +test-suite milch-test + type: exitcode-stdio-1.0 + main-is: Spec.hs + other-modules: + TestUtils + Paths_milch + hs-source-dirs: + test + ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N + build-depends: + HUnit ==1.6.2.0 + , base >=4.7 && <5 + , containers + , farmhash ==0.1.0.5 + , haskeline ==0.8.2 + , milch + , mtl + , regex-tdfa ==1.3.2 + , text + , utf8-string ==1.0.2 + default-language: Haskell2010 |
