50 lines
827 B
YAML
50 lines
827 B
YAML
name: turing-hs
|
|
version: 0.1.0.0
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
|
|
library:
|
|
source-dirs: src
|
|
|
|
executables:
|
|
turing:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- turing-hs
|
|
|
|
tests:
|
|
turing-hs-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- hspec
|
|
- turing-hs
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Werror
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-patterns
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-home-modules
|
|
- -Wname-shadowing
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
- -Wunused-packages
|
|
- -Wunused-type-patterns
|