AoC_2022/AoC2022.cabal

65 lines
1.6 KiB
Plaintext

cabal-version: 2.4
name: AoC2022
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis: Solutions for Advent of Code 2022
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: CC-BY-NC-ND-4.0
author: Stefan Dresselhaus
maintainer: stefan@dresselhaus.cloud
-- A copyright notice.
-- copyright:
-- category:
extra-source-files:
CHANGELOG.md
README.md
executable Day1
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.14.3.0
, safe
hs-source-dirs: day1
default-language: Haskell2010
executable Day2
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.14.3.0
, safe
hs-source-dirs: day2
default-language: Haskell2010
executable Day3
main-is: Main.hs
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base ^>=4.14.3.0
, safe
, extra
hs-source-dirs: day3
default-language: Haskell2010