diff options
author | Tom Smeding <tom@tomsmeding.com> | 2021-06-24 23:14:54 +0200 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2021-06-24 23:14:54 +0200 |
commit | 0fefe4822c65bde81ec4c0da1b5b32a9b411ca79 (patch) | |
tree | 0efeffb8b1b6d6126bc806209a2f5a64fb32c96f /ftilde.cabal |
Initial
Diffstat (limited to 'ftilde.cabal')
-rw-r--r-- | ftilde.cabal | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ftilde.cabal b/ftilde.cabal new file mode 100644 index 0000000..1432547 --- /dev/null +++ b/ftilde.cabal @@ -0,0 +1,27 @@ +cabal-version: 2.0 +name: ftilde +synopsis: F tilde (following https://doi.org/10.1145/3341701) +version: 0.1.0.0 +license: MIT +author: Tom Smeding +maintainer: tom@tomsmeding.com +build-type: Simple + +executable ftilde + main-is: Main.hs + other-modules: + AST + AD + Examples + Gradient + Language + Repl + Simplify + Sink + build-depends: + base >= 4.13 && < 4.15, + vector, + some + hs-source-dirs: . + default-language: Haskell2010 + ghc-options: -Wall -O2 -threaded |