50 lines
1007 B
YAML
50 lines
1007 B
YAML
name: day08-haskell
|
|
version: 0.1.0.0
|
|
github: "githubuser/day08-haskell"
|
|
license: BSD-3-Clause
|
|
author: "Author name here"
|
|
maintainer: "example@example.com"
|
|
copyright: "2024 Author name here"
|
|
spec-version: 0.36.0
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
|
|
ghc-options:
|
|
- -Wall
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-export-lists
|
|
- -Wmissing-home-modules
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
|
|
library:
|
|
source-dirs: src
|
|
dependencies:
|
|
- containers
|
|
|
|
executables:
|
|
day08-haskell-exe:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- day08-haskell
|
|
|
|
tests:
|
|
day08-haskell-test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- day08-haskell
|