Created
September 3, 2019 20:36
-
-
Save shapr/03c78d9e410cb6db033b27d71ef34447 to your computer and use it in GitHub Desktop.
a basic cabal package config file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cabal-version: >=1.10 | |
name: whonknows | |
version: 0.1.0.0 | |
license: BSD3 | |
license-file: LICENSE | |
author: Shae Erisson | |
maintainer: [email protected] | |
build-type: Simple | |
extra-source-files: CHANGELOG.md | |
library | |
exposed-modules: MyLibTest, MyLib, Main | |
build-depends: base >=4.12 && <4.13 | |
default-language: Haskell2010 | |
executable whonknows | |
main-is: Main.hs | |
build-depends: base >=4.12 && <4.13 | |
default-language: Haskell2010 | |
test-suite whonknows-test | |
default-language: Haskell2010 | |
type: exitcode-stdio-1.0 | |
main-is: MyLibTest.hs | |
build-depends: base >=4.12 && <4.13 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment