diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2022-11-30 21:30:26 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2022-12-02 21:25:24 +0100 |
commit | 55cead7b8d31f5e5fe09df0588abf736a465c0eb (patch) | |
tree | e32319e97ea5dacb0f052a464fe3f1bdfb3ce504 /minici.cabal | |
parent | 3005c10b971856862a51cfa18dc42c79b272952d (diff) |
First build test using cabal
Diffstat (limited to 'minici.cabal')
-rw-r--r-- | minici.cabal | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/minici.cabal b/minici.cabal index 55bad96..1dce029 100644 --- a/minici.cabal +++ b/minici.cabal @@ -21,12 +21,29 @@ maintainer: roman.smrz@seznam.cz executable minici main-is: Main.hs + ghc-options: -Wall -- Modules included in this executable, other than Main. -- other-modules: -- LANGUAGE extensions used by modules in this package. + default-extensions: ExistentialQuantification + FlexibleContexts + FlexibleInstances + GADTs + GeneralizedNewtypeDeriving + ImportQualifiedPost + LambdaCase + MultiParamTypeClasses + OverloadedStrings + ScopedTypeVariables + TupleSections + TypeApplications -- other-extensions: build-depends: base ^>=4.15.1.0 + , directory >=1.3 && <1.4 + , mtl >=2.2 && <2.3 + , process >=1.6 && <1.7 + , text >=1.2 && <1.3 hs-source-dirs: src default-language: Haskell2010 |