diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 16:38:24 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 16:38:24 +0300 |
commit | c104e054efeb6a4367d0b6d9744d792dac4d05df (patch) | |
tree | 03feb1a5ea079a31b916ec9781d41d452e6a3172 /wintmp.cabal | |
parent | bugfix & refactoring (diff) | |
download | windows-env-c104e054efeb6a4367d0b6d9744d792dac4d05df.tar.gz windows-env-c104e054efeb6a4367d0b6d9744d792dac4d05df.zip |
optparse-applicative instead of GetOpt
Diffstat (limited to 'wintmp.cabal')
-rw-r--r-- | wintmp.cabal | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wintmp.cabal b/wintmp.cabal index 8e73e63..a8a8437 100644 --- a/wintmp.cabal +++ b/wintmp.cabal @@ -25,6 +25,7 @@ executable add_path main-is: AddPath.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base + , optparse-applicative , wintmp default-language: Haskell2010 @@ -41,6 +42,7 @@ executable list_path main-is: ListPath.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base, directory + , optparse-applicative , wintmp default-language: Haskell2010 @@ -49,6 +51,7 @@ executable remove_path main-is: RemovePath.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base + , optparse-applicative , wintmp default-language: Haskell2010 @@ -57,6 +60,7 @@ executable set_env main-is: SetEnv.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base + , optparse-applicative , wintmp default-language: Haskell2010 @@ -65,6 +69,7 @@ executable unset_env main-is: UnsetEnv.hs ghc-options: -threaded -rtsopts -with-rtsopts=-N build-depends: base + , optparse-applicative , wintmp default-language: Haskell2010 |