62 lines
1.6 KiB
Plaintext
62 lines
1.6 KiB
Plaintext
cabal-version: 3.0
|
|
name: kalmennAOC2024
|
|
version: 0.1.0.0
|
|
license-file: LICENSE
|
|
author: kalmenn
|
|
maintainer: kale@kalmenn.fr
|
|
category: Challenge
|
|
build-type: Simple
|
|
extra-doc-files: CHANGELOG.md
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable day1
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.18.2.1,
|
|
parsec ^>= 3.1.17.0,
|
|
parsec-numbers ^>= 0.1.0
|
|
hs-source-dirs: day1
|
|
default-language: Haskell2010
|
|
|
|
executable day2
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.18.2.1,
|
|
parsec ^>= 3.1.17.0,
|
|
parsec-numbers ^>= 0.1.0
|
|
hs-source-dirs: day2
|
|
default-language: Haskell2010
|
|
|
|
executable day3
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.18.2.1,
|
|
parsec ^>= 3.1.17.0,
|
|
parsec-numbers ^>= 0.1.0
|
|
hs-source-dirs: day3
|
|
default-language: Haskell2010
|
|
|
|
executable day4
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.18.2.1,
|
|
parsec ^>= 3.1.17.0
|
|
hs-source-dirs: day4
|
|
default-language: Haskell2010
|
|
|
|
executable day5
|
|
import: warnings
|
|
main-is: Main.hs
|
|
build-depends:
|
|
base ^>=4.18.2.1,
|
|
parsec ^>= 3.1.17.0,
|
|
parsec-numbers ^>= 0.1.0
|
|
hs-source-dirs: day5
|
|
default-language: Haskell2010
|